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!