Equation with time dependent variable

23 ビュー (過去 30 日間)
Luis Morales
Luis Morales 2016 年 12 月 3 日
回答済み: bio lim 2016 年 12 月 3 日
Hi, I need to solve this equation y(x)=2*exp(-x)/(p*n)
In which p is a range of values already given and n is a constant that I have already defined, and x = time. How can I define x to be time to solve this equation? y is said to be a function of p and n

回答 (1 件)

bio lim
bio lim 2016 年 12 月 3 日
p = -10:10; % range of values
n = 2; % constant
for j = 1:length(p) % We find y at each, p
for t = 1:10 % time loop
y(t,j)=2*exp(-t)/(p(j)*n)
end
end

カテゴリ

Help Center および File ExchangeMathematics and Optimization についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by