Find the maximum value of a column in a table
조회 수: 68 (최근 30일)
이전 댓글 표시
I have a spreadsheet that is read into a Matlab table. I need to get the maximum value in column 1. I thought the following would work, but it keeps throwing up an error.
MaxExpTime = max(A(:1));
댓글 수: 0
답변 (1개)
Dave B
2021년 10월 29일
편집: Dave B
2021년 10월 29일
The problem here is that A(:,1) returns a table not the values in the table. You can retrieve the values with A.(1) or A{:,1} but better practice is to use variable names (e.g. A.Var1) with a table:
A=table(rand(10,1))
max(A.(1))
max(A{:,1})
max(A.Var1)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Tables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!