Save vector to m-file
Mostrar comentarios más antiguos
Hi. I have a task where I am to create a file called bestPath.m which in turn should include a vector called bestPath. I have searched the net, but no luck. Thanks in advance.
Respuestas (1)
Oleg Komarov
el 2 de Oct. de 2014
Editada: Oleg Komarov
el 2 de Oct. de 2014
a = rand(10);
matlab.io.saveVariablesToScript('test.m','a')
Check the content of the .m file with
edit test
Calling test from the command line will evaluate a into the workspace.
2 comentarios
Tomas
el 2 de Oct. de 2014
Oleg Komarov
el 3 de Oct. de 2014
If my answer solves your problem, please accept it.
Categorías
Más información sobre Adding custom doc en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!