Error using * Inner matrix dimensions must agree? It also shows an error for Y, but I can't figure out what it is?
Mostrar comentarios más antiguos
w = 3;
t = 0:1:8;
Y = (t*sqrt(t.^2+w^2))+((w^2)*log((t+sqrt(t.^2+w^2))/w));
P2 = 1-((w^2)/(t^.2+w^2))*cos(Y)*cos(Y);
plot(t, P2)
The equation that I am trying to plot are highlighted in blue.
Please Help.

1 comentario
per isakson
el 21 de Abr. de 2017
Respuesta aceptada
Más respuestas (1)
Greg Dionne
el 21 de Abr. de 2017
0 votos
It looks like you want to use ".*" instead of "*" and "./" instead of "/".
1 comentario
Blaz Serna
el 21 de Abr. de 2017
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!