Nested functions procedure error
Show older comments
Hi,
I created some nested function but it reports the error. In the first function, I calculated values for temperatures x1 and x2. Then, I defined function result that represents thermostat which should determine should thermostat be on or off in each iteration. In case that thermostat does not work in each iteration, temperature raise. Here are the functions:
function xprime = heat_sys(t,x);
params...
xprime = (system of diff equat)
function result = thermostat(x);
on = true;
off = false;
for i=1:n(end)
if(x(i,1)>=18 && x(i,1)<=20)
result(i)=on;
else if(x(i,1)<18)
result(i)=on;
else if(x(i,1)>20)
result(i,1)=off;
end;
end;
end;
end;
By the way, is this right approach to do this or I could use something different also?
Thanks in advance!
8 Comments
Arthur
on 9 Sep 2013
What is the error you get?
Nikola
on 9 Sep 2013
Arthur
on 9 Sep 2013
How do you call the two functions?
Nikola
on 9 Sep 2013
Walter Roberson
on 9 Sep 2013
Nesting a function does not cause the function to be called. MATLAB would not know what arguments to call the function on, or what variable to write the output to. You need to have an explicit call to thermostat in your code.
Walter Roberson
on 9 Sep 2013
The xprime you are returning does not look to involve values calculated by thermostat(). If it actually does, then you would have the calls in the way you defined your system of equations... e.g.,
xprime = [ .... t^5+thermostat(x), ....]
If, though, the differential equation matrix is not calculated in terms of thermostat calls, then some other layer needs to receive the result of the thermostat calls. What layer is that?
Nikola
on 9 Sep 2013
Accepted Answer
More Answers (0)
Categories
Find more on Programming in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!