Problem with vectors dimensions
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

