Saving user input and write into .csv file?

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

回答 (1 件)

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2020 年 2 月 7 日

0 投票

solution:
writecell(answer,'myfilename.csv')
and for get the file after you can use:
readcell('myfilename.csv')

3 件のコメント

Walter Roberson
Walter Roberson 2020 年 2 月 7 日
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
steamrice 2020 年 2 月 9 日
@Walter Roberson I was reading your early post but I am not too sure which one would help me achieve my goal. I am thinking to have that fix column of specific inputs (data information and its changingable). When the user enter that specific inputs and after some data analysis, those data information can also write into the .csv with the corresponding data.
steamrice
steamrice 2020 年 2 月 10 日
Thanks for the response!
I think you mentioned, "I need to emphasize that this cannot be used to add new columns to a csv file."
Does that mean its not possbile to combine the user input from prompt with the after-data-anaylsis into the same .csv?

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeMATLAB についてさらに検索

製品

タグ

質問済み:

2020 年 2 月 7 日

コメント済み:

2020 年 2 月 10 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by