How to index a value of an anonymous function
Show older comments
I am trying to create a function that uses Euler Method to find the height of water in a tank as a function of time given the equation for dy/dt. The equation dy/dt is to be passed into my function as an anonymous function. The equation for dy/dt depends on both y and t as well as some constants.
My program initilizes a vector called change that I want to store the values of dy/dt as the loop runs. I cannot run the program as it is given because I am trying to store each value of dy/dt (which should be calculated on each iteration based on the changing value of y as the loop runs) to be multiplied by the timestep, but the value of the vector called 'change' is remaining constant. What I essentially want to do is have 'change(k)=dydt(k)' but because I am passing dydt as an anonymous function using 'y' as an input I cannot simply index using '(k)' at the end of the vector name the way I usually would. I'm not sure if there is an easy fix or if I need to re-program the way the way I am using the anonymous function. Any tips and help are appriciated, thank you!!
function [depth_vector] = Depth_Calc(dydt,i,f,n,varargin)
%Calculates the Depth vs Time by evaluating the differential
%equation y with parameters A, Q, alpha from time i to time f
%using timestep n and generates table printout of results
%input:
%dydt= function (given as anonymous function)
%i=initial time
%f=finl time
%n=timestep
t=[i:n:f];
y=ones(1,((f-i)/n));
change=.32635*ones(1,((f-i)/n));
for k=2:((f-i)/n)
change=dydt(varargin{:})
y(k)=y(k-1)+n*change(k-1);
end
depth_vector=y;
output=depth_vector;
2 Comments
KSSV
on 29 Oct 2020
You want change to be a matrix? According to your code y also will be a matrix.
Robert Basler
on 29 Oct 2020
Accepted Answer
More Answers (0)
Categories
Find more on Logical 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!