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!