unable to input using filename (dxf)
2 ビュー (過去 30 日間)
古いコメントを表示
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
0 件のコメント
採用された回答
Mischa Kim
2014 年 2 月 26 日
編集済み: Mischa Kim
2014 年 2 月 26 日
Ellen, use
'my_dxf_file.dxf'
with the primes (to make it a string input).
0 件のコメント
その他の回答 (1 件)
Wayne King
2014 年 2 月 26 日
編集済み: Wayne King
2014 年 2 月 26 日
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'
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Bodies についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!