Unexpected MATLAB operator. how declare correctly?
3 ビュー (過去 30 日間)
古いコメントを表示
[status]= abmsdk('SetDestinationFile', C:\ABM\B-Alert\Data\1830);
|
Error: Unexpected MATLAB operator.
0 件のコメント
採用された回答
Walter Roberson
2018 年 6 月 1 日
[status]= abmsdk('1830_b30_112311_122300.def', 'C:\ABM\B-Alert\Data\1830_1');
4 件のコメント
Walter Roberson
2018 年 6 月 4 日
Try
status = abmsdk('SetDestinationFile', 'C:\ABM\B-Alert\Data\1830_1\1830_b30_112311_122300.def')
But if that is an existing file, make a back-up copy of it first, in case it overwrites the file.
その他の回答 (1 件)
Alma Martinez
2018 年 6 月 6 日
編集済み: Walter Roberson
2018 年 6 月 6 日
1 件のコメント
Walter Roberson
2018 年 6 月 6 日
[status]= abmsdk('SetDestinationFile', 'C:\ABM\B-Alert\Data\1830');
Filenames should always be placed in quotes.
参考
カテゴリ
Help Center および File Exchange で File Operations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!