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')

回答 (1 件)

Cris LaPierre
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'?

この質問は閉じられています。

質問済み:

2020 年 4 月 29 日

閉鎖済み:

2021 年 8 月 20 日

Community Treasure Hunt

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

Start Hunting!

Translated by