Problem with vectors dimensions
Show older comments
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
Accepted Answer
More Answers (0)
Categories
Find more on Logical in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
