I would to save the variables in a file txt or csv with a push button, can help me someone?

1 view (last 30 days)
I want to save the variables. I try with this string: save ('mentaldemand','physicaldemand','temporaldemand','performance','effort','frustration','.csv'), but it is wrong.

Answers (2)

Adam
Adam on 18 Oct 2016
You have to give a filename as the first argument to the save function.

Rani V.S
Rani V.S on 18 Oct 2016
save ('filename.csv','mentaldemand','physicaldemand','temporaldemand','performance','effort','frustration')
Try the above code

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!