my pc name is (user's pc) how to pass in run function ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Divyesh pandav
am 29 Sep. 2021
Kommentiert: Divyesh pandav
am 1 Okt. 2021
code:
run 'C:\Users\user's PC\Desktop\test.m'
Error: Character vector is not terminated properly.
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (2)
Image Analyst
am 29 Sep. 2021
That's too many apostrophes (three). The string ends at the second one.
If you need an apostrophe in the path, use double quotes "
"C:\Users\user's PC\Desktop\test.m"
2 Kommentare
Image Analyst
am 29 Sep. 2021
If you want to run the m file, set the Current folder to the folder where the text.m lives and do
>> test
No need to type "run" before it.
Or double click on it in the Current folder panel to bring it up in a text editor, and click the green Run triangle on the Tool ribbon.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Environment and Settings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!