how to solve a 5th degree equation and write a loop function with it

1 回表示 (過去 30 日間)
Ayman Otmani
Ayman Otmani 2020 年 5 月 29 日
コメント済み: Stijn Haenen 2020 年 5 月 29 日
hello guys
here is my problem
i have this equation that i need to solve
φ=a*θ*(1-φ)^5
a= 0,00006
θ input for the equation
φ output for the equation
and i need to loop it so it gives me results for each θ that i m gonna implement from a data file
after that i need to plot my results based on position of each point
the problem looks complicated for me coz i m not good in matlab
can anyone help and discuss
thanks in advance

回答 (1 件)

Stijn Haenen
Stijn Haenen 2020 年 5 月 29 日
use the functions syms and solve:
syms x
solve(x==a*b*(1-x)^5)
  2 件のコメント
Ayman Otmani
Ayman Otmani 2020 年 5 月 29 日
i used that but i get roots and i dont know what to do after that
Stijn Haenen
Stijn Haenen 2020 年 5 月 29 日
use
s=solve(x==a*b*(1-x)^5);
s=double(s)

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeNumber Theory についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by