Where can I download the data in excel which is used in MATLAB for example patients.mat etc
조회 수: 8 (최근 30일)
이전 댓글 표시
채택된 답변
Alexander
2023년 10월 3일
Try this:
load patients.mat
patients = table(LastName,Gender,Age,Height,Weight,Smoker,Systolic,Diastolic);
writetable(patients, "patients.xlsx","FileType","spreadsheet")
Details you can find in help table and help writetable.
Hope it helps.
댓글 수: 0
추가 답변 (1개)
Image Analyst
2023년 10월 3일
On my computer it is here:
C:\Program Files\MATLAB\R2023b\toolbox\matlab\demos\patients.mat
댓글 수: 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!