Now to program a sine divid by a sine function in Excel?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 3K views
yungman
Messages
5,741
Reaction score
291
This is part of the simulation program in Antenna field pattern. One part involve finding the position of the peak where:

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

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
 
Physics news on Phys.org
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))
 
LCKurtz said:
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