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!