Undefined function 'matlab' for input arguments of type 'char'.
1 回表示 (過去 30 日間)
古いコメントを表示
I got this error, message and can't figure it out. Can anyone check the code below and give me an idea? Thank you
fileName = 'Scenario 1 Results.xlsx';
[numerical, stringal] = xlsread(fileName, 'Sheet1');
Pb = numerical(:,1);
Pa = numerical(:,2);
Profit = numerical(:,5);
plot3(Pa,Pb,Profit)char
0 件のコメント
回答 (1 件)
Image Analyst
2015 年 1 月 16 日
The last line should not have "char" at the end. It should simply be
plot3(Pa,Pb,Profit);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!