Undefined function 'matlab' for input arguments of type 'char'.

2 次查看(过去 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

回答(1 个)

Image Analyst
Image Analyst 2015-1-16
The last line should not have "char" at the end. It should simply be
plot3(Pa,Pb,Profit);

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by