how do I store a function into a variable and solve it?
์ด์ ๋๊ธ ํ์
I am trying to calculate this function: ๐(๐ก) = 4(sin(2๐๐ก)) + exp(โ๐ก)/๐ก
but it keeps on telling me 'Error using sym/assume Too many output arguments.'
syms t
y = 4*sin(2*pi*t) + exp(-t)./t;
eqn = y == 0
solv= solve(eqn,t)
๋๊ธ ์: 4
There are likely an infinity of solutions โ
syms t
y = 4*sin(2*pi*t) + exp(-t)./t;
figure
fplot(y, [0 10])
grid
.
Star Strider
2022๋
8์ 5์ผ
There remain an infinity of solutions!
sumaiya hossain
2022๋
8์ 5์ผ
๋ต๋ณ (0๊ฐ)
์นดํ ๊ณ ๋ฆฌ
๋์๋ง ์ผํฐ ๋ฐ File Exchange์์ Symbolic Math Toolbox์ ๋ํด ์์ธํ ์์๋ณด๊ธฐ
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

