remove the empty values
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I want to remove the empty values so that each value has its own variable names
3 commentaires
Réponses (2)
Florian Bidaud
le 14 Juil 2023
Modifié(e) : Florian Bidaud
le 14 Juil 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 commentaires
Voir également
Catégories
En savoir plus sur Spreadsheets dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!