remove the empty values
조회 수: 3 (최근 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!