Azzera filtri
Azzera filtri

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

2 visualizzazioni (ultimi 30 giorni)
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);

Risposte (1)

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

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by