Error using * inner matrix dimension must agree?

2 次查看(过去 30 天)
Error using * Inner matrix dimensions must agree.
Error in FPAeld1 (line 35)
F=Pi.*Pi*a1+Pi*b1+c1+mod(ei*sin.*(fi*(pmin-Pi)))
  2 个评论
Kajal Chanchalani
编辑:Walter Roberson 2018-8-2
xw=xn.*exp(-j*(w*n'));
Inner dimensions matrix must agrre . This is the error that i am getting
Walter Roberson
Walter Roberson 2018-8-2
In that code, size(w,2) would have to equal size(n,2) unless one of w or n is a scalar. size(j,2) would have to match size(w,1) unless one of j or (w*n') is a scalar.

请先登录,再进行评论。

回答(1 个)

Steven Lord
Steven Lord 2015-9-9
In addition to Star Strider's comment, you have a variable named sin in your workspace but I suspect you wanted to instead call the SIN function. If so, clear the variable named sin from your workspace and remove the .* between sin and the following parenthesis in your code.
If you've defined your own Pi function, that's not really necessary either; just call the PI function like in this example.
y = sin(0:0.1:2*pi);

类别

Help CenterFile Exchange 中查找有关 Multirate Signal Processing 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by