Undefined function or variable 'Part2iiTime'.
Info
This question is closed. Reopen it to edit or answer.
Show older comments
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')
Answers (1)
Cris LaPierre
on 29 Apr 2020
Edited: Cris LaPierre
on 29 Apr 2020
0 votes
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'?
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!