how to remove values below 0.1?
Mostra commenti meno recenti
after doing a series of calculations I obtained a prob(i)=1x27331 double matrix characterized by values ranging from 0 to about 0.4.
How can I remove all points with values less than 0.1 and change them to NaN?
I need these values below 0.1 to become worthless so that when plotting them they are not marked.
i tried with :
old = lt(prob(i),0.1);
new = NaN;
prob(i) = changem(prob(i),new,old);
...but it doesn't work.
Can anyone help me?
thanksss
Risposta accettata
Più risposte (1)
a = 0.4*rand(100,1); % generate some data
a(a<0.1) = nan
2 Commenti
ELISABETTA BILLOTTA
il 23 Giu 2022
Chunru
il 24 Giu 2022
Are you sure you use the same code?
Categorie
Scopri di più su 2-D and 3-D Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!