Undefined function or variable 'Part2iiTime'.
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
This is the code. The graph is just blank and says there is an error in the plot line.
function [Part2iiTemp,Part2iiTime]=Part2ii
x=zeros(45,1);
x(:)=175;
IsothermalT=(0:44)';
[B,O,overchargedreactor]=overcharged;
B=B-273;
for y=1:41
if B(y)<175
B(y)=175;
end
end
Part2iiTemp=[x;B];
Part2iiTime=[IsothermalT;overchargedreactor];
end
figure(3)
plot(Part2iiTime,Part2iiTemp)
hold on
title('Part2ii')
ylabel('Time(Minutes)')
xlabel('Temperature')
0 件のコメント
回答 (1 件)
Cris LaPierre
2020 年 4 月 29 日
編集済み: Cris LaPierre
2020 年 4 月 29 日
0 投票
This error message means MATLAB can't find the function. Where does this function live? Have you saved it yet? Is it in the current folder, or in a folder that exists on your MATLAB Path?
Also, are you aware you have called your function 'Part2ii', and not 'Part2iiTime'?
0 件のコメント
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!