Borrar filtros
Borrar filtros

my pc name is (user's pc) how to pass in run function ?

1 visualización (últimos 30 días)
Divyesh pandav
Divyesh pandav el 29 de Sept. de 2021
Comentada: Divyesh pandav el 1 de Oct. de 2021
code:
run 'C:\Users\user's PC\Desktop\test.m'
Error: Character vector is not terminated properly.

Respuesta aceptada

Walter Roberson
Walter Roberson el 30 de Sept. de 2021
run("C:\Users\user's PC\Desktop\test.m")
(tested)

Más respuestas (2)

Image Analyst
Image Analyst el 29 de Sept. de 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 comentarios
Divyesh pandav
Divyesh pandav el 29 de Sept. de 2021
>> run "C:\Users\user's PC\Desktop\test.m"
run "C:\Users\user's PC\Desktop\test.m"
Error: Character vector is not terminated properly.
Divyesh pandav
Divyesh pandav el 29 de Sept. de 2021
@Image Analyst sir my pc name is (user's PC) i want to use in run function.. but its slowing error..!!

Iniciar sesión para comentar.


Image Analyst
Image Analyst el 29 de Sept. de 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.

Categorías

Más información sobre Data Type Conversion en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by