remove the empty values
1 回表示 (過去 30 日間)
古いコメントを表示
I want to remove the empty values so that each value has its own variable names
3 件のコメント
回答 (2 件)
Florian Bidaud
2023 年 7 月 14 日
編集済み: Florian Bidaud
2023 年 7 月 14 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!