how do we make vector the same length ( i get the error: vector must be the same length)
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
x=linspace(0,100);
y=linspace(0,100);
z=(-8.*x)/(x.^2+ y.^2 +1);
plot3(x,y,z)
0 commentaires
Réponses (1)
the cyclist
le 7 Oct 2021
Modifié(e) : the cyclist
le 7 Oct 2021
x=linspace(0,100);
y=linspace(0,100);
z=(-8.*x)./(x.^2+ y.^2 +1); % Note that I changed this to ./
plot3(x,y,z)
0 commentaires
Voir également
Catégories
En savoir plus sur Matrix Indexing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!