Saving user input and write into .csv file?
Ältere Kommentare anzeigen
Hello, I am wondering whether it would be possible to save the user input and write into .csv?
prompt={'weight','hight','birth date'};
dlgtitle='Input';
dims=[1 35];
definput={'120kg','170cm','1998/5/2'};
answer = inputdlg(prompt,dlgtitle, dims, definput);
Thanks
Antworten (1)
JESUS DAVID ARIZA ROYETH
am 7 Feb. 2020
solution:
writecell(answer,'myfilename.csv')
and for get the file after you can use:
readcell('myfilename.csv')
3 Kommentare
Walter Roberson
am 7 Feb. 2020
This requires r2019b or later.
For earlier versions
https://www.mathworks.com/matlabcentral/answers/503384-xlswrite-overwrites-data-despite-setting-a-specific-range#answer_413819 lists other possibilities
steamrice
am 9 Feb. 2020
steamrice
am 10 Feb. 2020
Kategorien
Mehr zu MATLAB finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!