Clear Filters
Clear Filters

bagaimana penyelesaian persamaan linear dan non linearnya

3 views (last 30 days)
f(x) = cos x - sqrt(x) in [0, 1]
  1 Comment
Rik
Rik on 17 Mar 2023
Have a read here and here. It will greatly improve your chances of getting an answer.
You can find guidelines for posting homework on this forum here. If you have trouble with Matlab basics you may consider doing the Onramp tutorial (which is provided for free by Mathworks). If your main issue is with understanding the underlying concept, you may consider re-reading the material you teacher provided and ask them for further clarification.

Sign in to comment.

Answers (1)

Bhanu Prakash
Bhanu Prakash on 17 Mar 2023
Hi Alma,
As per my understanding, you want to solve the non-linear equation "f(x)" in the range "[0,1]".
To solve a system of non-linear equations, the function "fsolve" can be used. Please look at the following code, for your reference:
x=0:1;
f=@(x) cos(x)-sqrt(x);
s=fsolve(f,x);
where, "f" is the non-linear equation, "x" is the range and "s" is the required solution.
You can refer to the documention of "fsolve" here:
Hope this answer helps you.
Thanks,
Bhanu Prakash.

Categories

Find more on Linearization 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!