Filter löschen
Filter löschen

bagaimana penyelesaian persamaan linear dan non linearnya

3 Ansichten (letzte 30 Tage)
Alma
Alma am 17 Mär. 2023
Beantwortet: Bhanu Prakash am 17 Mär. 2023
f(x) = cos x - sqrt(x) in [0, 1]
  1 Kommentar
Rik
Rik am 17 Mär. 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.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Bhanu Prakash
Bhanu Prakash am 17 Mär. 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.

Kategorien

Mehr zu Linearization finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by