How can I discretize a function so I can use it in a model?
25 次查看(过去 30 天)
显示 更早的评论
I need to use discretized data in my model, but I have three continuous functions for three different time-periods. How can I implement this correctly?
2 个评论
Chris C
2014-3-12
Claire, that depends on a few things including: what the functions are, what the model is and what kind of precision you're looking for. If you could clarify a little bit I might be able to help.
采纳的回答
Chris C
2014-3-12
The great thing about your question is that you already have the continuous functions. The greater challenge is usually finding a function to represent your data, but since that isn't a problem this shouldn't be too tough. What I would do is create a time array and then solve your continuous functions at every time step within your time array. For example...
t = linspace(1,1000,100); %Generates a time vector from 1 to 1000 with 100 points
x = ones(length(t),3); % Initialize data matrix.
x(:,1) = cos(t); % Solve each equation at each node of the time vector
x(:,2) = 3*t.^2;
x(:,3) = log(t/5);
However, if your function changes rapidly in any zone your discretization should have more data, especially in that region. This might require you to use something like logspace of even to define your own discretization manually.
2 个评论
Chris C
2014-3-12
编辑:Chris C
2014-3-12
This is not the most elegant approach, but it's probably the easiest to understand (at least for me) :)
k = 2;
b = 4;
t = linspace(0,720,721);
x = ones(length(t),1);
for i = 1:length(t)
if t(i)<360-k/2
x(i) = 'INSERT FUNCTION HERE';
elseif t(i) >= 360-k/2 && t(i)<360+k/2
x(i) = 'INSERT FUNCTION HERE';
else
x(i) = 'INSERT FUNCTION HERE';
end
end
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Numeric Types 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!