
How I can print out only the numbers over the threshold and keep each number in the same place ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Anonymous User
am 7 Apr. 2020
Beantwortet: Sindar
am 8 Apr. 2020
How I can print out only the numbers over 30 and keep each number in the same place ? to able to plot and shows which sample is over 30 !
I want show the real value 30-50 = 20 not 1 and zero !
x= randi([20 50],163,50)
1 Kommentar
darova
am 7 Apr. 2020
plot( randi([3 5],10,10) )
ylim([ 2 6 ])
Everything is between 3 .. 5. What is the problem?

Akzeptierte Antwort
Sindar
am 8 Apr. 2020
Plots will exclude NaN values, but keep the rest of the data in place. So, here's a trick:
data ./ (condition)
Where condition is true, this will return the data (data/1)
Where condition is false, this will return NaN (data/0)
So:
y = randi([20 50],163,50);
miny = 30;
plot(y./(y>=miny))
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots 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!