PDA

View Full Version : Now to program a sine divid by a sine function in Excel?


yungman
Aug28-11, 05:30 PM
This is part of the simulation program in Antenna field pattern. One part involve finding the position of the peak where:

AF=\frac {\sin\;Nx}{sin \;x}\;\hbox { where N is an integer.}

The peak is at x=0 and the AF=N. But excel do not accept this and call out as "DIV 0" error. Is there any way to program it so when x= 0, it will show AF=N?

THis is like sync function when x = 0. I don't know whether this is the right place to post, but this is the best I see fit.

Thanks

SteamKing
Aug28-11, 06:11 PM
Hint: apply l'Hopital's Rule as x approaches 0. Then in Excel, test when x = 0 and use the appropriate expression for AF.

LCKurtz
Aug28-11, 06:17 PM
I'm not sure of your context, but what about using the IF statement? For example, if you name one cell x and another cell N, something like this

=if(sin(x) = 0, N, sin(N*x)/sin(x))

yungman
Aug28-11, 06:27 PM
I'm not sure of your context, but what about using the IF statement? For example, if you name one cell x and another cell N, something like this

=if(sin(x) = 0, N, sin(N*x)/sin(x))

I'll check the excel program.

Thanks