remove the empty values
Afficher commentaires plus anciens
I want to remove the empty values so that each value has its own variable names
3 commentaires
Florian Bidaud
le 14 Juil 2023
Hi,
Remove the empty values from what ?
What do you mean by 'each value has it own variable names' ?
Can you share your code ?
PA
le 14 Juil 2023
Dyuman Joshi
le 14 Juil 2023
So you want to get the 1st and 3rd row from the excel sheet?
Réponses (2)
NAVNEET NAYAN
le 14 Juil 2023
0 votes
Please take hint/help from the following link:
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),:)
Catégories
En savoir plus sur Data Import from MATLAB dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!