problem occour in Change directory,,,how to remove it..??
5 ビュー (過去 30 日間)
古いコメントを表示
??? Error using ==> cd
Cannot CD to D:\RNAi\matlab (Name is nonexistent or not a directory).
Error in ==> roughwfingcvlet at 52
cd D:\RNAi\matlab
0 件のコメント
回答 (1 件)
Jan
2012 年 4 月 23 日
The error message tells you, that the program tried to change into a not existing directory. Without seeing the code, it is impossible to guess the reason of this error.
2 件のコメント
Jan
2016 年 1 月 24 日
The message ist still clear: The Folder "D:\RNAi\matlab" does not exist. So create it manually in the Windows Explorer or use mkdir.
By the way: eval is evil. Better use:
save(cvletname, 'X');
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!