how to find the corresponding elements in a matrix/excel
조회 수: 3 (최근 30일)
이전 댓글 표시
Like if I name the Stage 2 then it should display the disease name(Alternaria leafspot) occuring at that stage. Sample file attached
댓글 수: 2
Image Analyst
2023년 4월 10일
If you name what "the Stage 2"? Display the disease name how???? On a GUI? In the command window? In the workspace panel?
If you have any more questions, then attach your data and code to read it in with the paperclip icon after you read this:
채택된 답변
Image Analyst
2023년 4월 10일
Try this:
t = readtable('FinalBookExcel.csv')
% Lets specify row 2, column 1 and get the value there.
row = 2;
t21 = t.CottonStage(row)
% Now let's get the "DiseaseSeverity" value for that same row
t22 = t.DiseaseSeverity(row)
% Now let's get the "Disease" value for that same row
t23 = t.Disease(row)
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!