unable to input using filename (dxf)

2 visualizaciones (últimos 30 días)
Ellen
Ellen el 26 de Feb. de 2014
Editada: Mischa Kim el 26 de Feb. de 2014
My code: % Reading the dxf-file.
filename = input('Type the name of the dxf-file:');
In command window I write
my_dxf_file.dxf
(saved in the same folder as the file) but get the response:
Error using input Undefined function or variable 'my_dxf_file'
Anyone know why?
Thanks

Respuesta aceptada

Mischa Kim
Mischa Kim el 26 de Feb. de 2014
Editada: Mischa Kim el 26 de Feb. de 2014
Ellen, use
'my_dxf_file.dxf'
with the primes (to make it a string input).

Más respuestas (1)

Wayne King
Wayne King el 26 de Feb. de 2014
Editada: Wayne King el 26 de Feb. de 2014
If you want this to be a string, you need to enclose it in single quotest
filename = input('Type the name of the dxf-file:','s');
User enters:
'my_dxf_file.dxf'

Categorías

Más información sobre Bodies en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by