Problem with vectors dimensions
Afficher commentaires plus anciens
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
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

