How can I solve it ?? Help please
3 views (last 30 days)
Show older comments
How can I solve this Equation Sin(2t)-3t=3t-cos(t) without using ((solve)) Thank you
0 Comments
Answers (3)
Ameer Hamza
on 5 Nov 2020
Edited: Ameer Hamza
on 5 Nov 2020
You said without using ((solve)). Try fzero()
f = @(t) sin(2*t)-3*t-3*t+cos(t)
t_sol = fzero(f, 0)
Result
>> t_sol
t_sol =
0.2385
This solution does not require any additional toolbox.
KSSV
on 5 Nov 2020
f = @(t) sin(2*t)-6*t+cos(t) ;
t = linspace(0,1,10^6) ;
y = f(t) ;
t0 = t(abs(y)<=10^-6)
See Also
Categories
Find more on Calculus 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!