Setting an array of a vector = NaN
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Christoph Meier
il 11 Set 2015
Commentato: Star Strider
il 11 Set 2015
Dear Matlab community,
I am trying to set a certain array within a vector = NaN
Example:
If I have a vector with a dimension 9,1:
0.0001
0.0003
0.0001
0.0002
2
3
4
5
6
And I would like to set the elements 1-4 = NaN, to get the following output:
NaN
NaN
NaN
NaN
2
3
4
5
6
Does someone know how to set an array within the vector to NaNs? In this case, I know that element 1-4 should be NaNs.
Thank you very much!
Chris
0 Commenti
Risposta accettata
Star Strider
il 11 Set 2015
This will do what you want:
V = [0.0001
0.0003
0.0001
0.0002
2
3
4
5
6];
V(V<1) = NaN
4 Commenti
Star Strider
il 11 Set 2015
My pleasure.
I thought you wanted to set specific conditions on what elements became NaN.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!