Problem with vectors dimensions
显示 更早的评论
hello every one! I tried to solve this Equation


and i should get this result

and I have already the data and I used this matlab code
RN = [8 -7.72 -3.4616 5.6457 -1.9739];
TN = [-8 7.72 -0.5384 -1.7857];
rN=conv(RN,RN);
tN=conv(TN,TN);
E=[0 -1];
S=conv(E,tN);
R=rN+tN+S;
but I got this error
%
Error using +
Matrix dimensions must agree.
Error in test (line 15)
R=rN+tN+S;
if you have advise for me to solve this Equation please tell me thank you
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Logical 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

