remove the empty values
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I want to remove the empty values so that each value has its own variable names
3 Commenti
Risposte (2)
Florian Bidaud
il 14 Lug 2023
Modificato: Florian Bidaud
il 14 Lug 2023
A = readtable("Book2.xlsx")
L1 = A.Value1([A.Parameters{:}] == 'L')
L2 = A.Value2([A.Parameters{:}] == 'L')
T1 = A.Value1([A.Parameters{:}] == 'T')
T2 = A.Value2([A.Parameters{:}] == 'T')
If you want to keep a table :
B = A(~isnan(A.Value1),:)
0 Commenti
Vedere anche
Categorie
Scopri di più su Spreadsheets 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!