Clear Filters
Clear Filters

Hi, I am new to MATLAB. I am not getting the plot .

2 views (last 30 days)
I am trying to plot N=5; A=-20:5:20; B=(1/N)*(abs((sin((N*A)/2))/(sin(A/2)))); plot(A,B)
I am not getting any error but getting only one value for B. Help please. Thank You in advance

Accepted Answer

Chad Greene
Chad Greene on 28 Feb 2018
You're doing vector operations, so use the ./ when calculating B like this:
B=(1/N)*(abs((sin((N*A)/2))./(sin(A/2))));
The . before operators such as .* is the difference between a cross product and a dot product, and the same logic follows for division and exponentials.

More Answers (1)

Jim Riggs
Jim Riggs on 28 Feb 2018
Inside the abs function you are dividing two vectors. This is where the error is.
  2 Comments
Kshitija Bagde
Kshitija Bagde on 28 Feb 2018
But when manually calculated, for every value A, there is different answer. Also not getting when abs is deleted
Jim Riggs
Jim Riggs on 28 Feb 2018
You should review your Matlab introductory material for operation syntax. Matlab uses different syntax to determine when a matrix operation is to be performed (as you have specified) vs. a scalar operation (as Chad has shown in his answer). You need to be familiar with these concepts.

Sign in to comment.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!