Borrar filtros
Borrar filtros

How to reolve this error? Matrix dimensions should agree..!

2 visualizaciones (últimos 30 días)
Shivam Gupta
Shivam Gupta el 28 de Oct. de 2016
Editada: James Tursa el 28 de Oct. de 2016
theta=0:0.01:2*pi;
r1=3/cos(theta);//getting error here "Error using / Matrix dimensions must agree"
r2=-4/sin(theta);//getting error here "Error using / Matrix dimensions must agree"
polarplot(theta,r1);hold on;
polarplot(theta,r2);

Respuestas (1)

James Tursa
James Tursa el 28 de Oct. de 2016
Editada: James Tursa el 28 de Oct. de 2016
Use element-wise operator ./ instead of the matrix operator /
r1=3./cos(theta);
r2=-4./sin(theta);

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by