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

1 次查看(过去 30 天)
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

采纳的回答

Chad Greene
Chad Greene 2018-2-28
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.

更多回答(1 个)

Jim Riggs
Jim Riggs 2018-2-28
Inside the abs function you are dividing two vectors. This is where the error is.
  2 个评论
Kshitija Bagde
Kshitija Bagde 2018-2-28
But when manually calculated, for every value A, there is different answer. Also not getting when abs is deleted
Jim Riggs
Jim Riggs 2018-2-28
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.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Mathematics 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by