How to plot a graph with 3 different length vectors, vectors are generated by rand() function.

10 vues (au cours des 30 derniers jours)
I am plotting in 3 dimenions for 20000 points in the interval (0,1).
x=0:0.2:1
y=0:0.2:1
z=0:0.1:1
x= rand(1,20000)
y= rand(1,20000)
z=rand(1,20000)
i am extracting points foe which at least one of 3 dimensions is bigger than 0.9 and plotting the points.
plot3(x(find(x>0.9)),y(find(y>0.9)),z(find(z>0.9)),'b*');
As the size of x,y,z is not equal after the conditions. (Size would vary each time as i am using rand function)
I am getting error Vectors must be of the same length.

Réponse acceptée

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH le 4 Nov 2019
solution:
close all
x= rand(1,20000);
y= rand(1,20000);
z=rand(1,20000);
f=or(or(x>0.9,y>0.9),z>0.9);
plot3(x(f),y(f),z(f),'b*')

Plus de réponses (0)

Catégories

En savoir plus sur Scatter Plots 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!

Translated by