How to fill end of rows of a matrix with NaN values?
16 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have a matrix M, and vector of indices K. I would like to make an element M(k,j) = NaN if j >= K(k). It is possible to do this with a vectorized short methode?
2 Commenti
Bob Thompson
il 1 Giu 2021
Modificato: Bob Thompson
il 1 Giu 2021
Why not just preallocate the matrix with nan values? Do you have any idea of the max size your matrix could be?
M = nan(max(k),max(j));
Risposte (2)
Sulaymon Eshkabilov
il 1 Giu 2021
Hi,
here is a simple solution, e.g.:
M = magic(5);
M(:,end)=nan
0 Commenti
Walter Roberson
il 2 Giu 2021
M = [1,2,3; 1,2,3; 1,2,3; 1,2,3]
K = [2; 3; 1; NaN]
M((1:size(M,2)) >= K(:)) = nan
0 Commenti
Vedere anche
Categorie
Scopri di più su Matrix Indexing 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!