Remove 0 values from an array
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I've read in data from an Excel spreadsheet consiting of 7 rows and 3 columns.
In each colum there is a 0 value (column 1, row 7; column 2, row 2; column 3, row 4).
Is there a way to remove these values from the array (without modifying the initial data that is brought in from Excel)?
3 Kommentare
DGM
am 9 Mär. 2022
Bearbeitet: DGM
am 9 Mär. 2022
Even if there is only one zero value per column, removing them and collapsing vertically will mean your data is misaligned in the region where values were removed.
For example:
% create a patterned array
A = (1:10)' + (10:10:30);
A([3 15 27]) = 0
% remove zeros and reshape
A = reshape(A(A~=0),[9 3])
% note the loss of alignment in the middle
all(range(mod(A,10),2)==0,2)
Antworten (1)
Rik
am 9 Mär. 2022
% create a patterned array
A = (1:10)' + (10:10:30);
A([3 15 27]) = 0;
row_has_zero = any( A==0 ,2)
A(row_has_zero,:)=[]
0 Kommentare
Siehe auch
Kategorien
Mehr zu Spreadsheets finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!