Unexpected MATLAB operator. how declare correctly?
1 次查看(过去 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 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!