These are some small BASIC programs I wrote for solving some common microwave engineering problems with the TI-84 Plus.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
240 B

Disp "ENTER"
Disp "WAVEGUIDE"
Disp "DIMENSIONS"
Prompt A,B
Disp "ENTER"
Disp "MAXIMA"
Prompt M,N
Disp "ENTER"
Disp "WAVE VEL."
Prompt V
For(I,0,M)
For(J,0,N)
0.5*V*[root]^2(I/A)^2+(J/B)^2)->F
Disp "M",I
Disp "N",J
Disp "Fc",F
Pause
End
End