Where can I download the data in excel which is used in MATLAB for example patients.mat etc
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
N/A
el 3 de Oct. de 2023
Respondida: Alexander
el 3 de Oct. de 2023
I am using MATLAB for statistical analysis and they have used a lot of data to show each topics but I want to download these data to better understand each functions and the output
0 comentarios
Respuesta aceptada
Alexander
el 3 de Oct. de 2023
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 comentarios
Más respuestas (1)
Image Analyst
el 3 de Oct. de 2023
On my computer it is here:
C:\Program Files\MATLAB\R2023b\toolbox\matlab\demos\patients.mat
0 comentarios
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!