Filter löschen
Filter löschen

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

2 Ansichten (letzte 30 Tage)
Shivam Gupta
Shivam Gupta am 28 Okt. 2016
Bearbeitet: James Tursa am 28 Okt. 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);

Antworten (1)

James Tursa
James Tursa am 28 Okt. 2016
Bearbeitet: James Tursa am 28 Okt. 2016
Use element-wise operator ./ instead of the matrix operator /
r1=3./cos(theta);
r2=-4./sin(theta);

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by