How to plot this implicit function?

I have the following equation:
100 =(9*(Delta/10)^(1/2))/125 + (pi - atan((18*f*pi*(Delta/10)^(1/2))/125))/(2*f*pi)
I want to plot f vs. Delta
How can i plot this function?
(My Matlab version is R2015)
Thank you.

 採用された回答

Matt J
Matt J 2021 年 1 月 19 日
編集済み: Matt J 2021 年 1 月 19 日

0 投票

It doesn't appear to be a very interesting function.
fun=@(Delta,f) (9*(Delta/10)^(1/2))/125 + (pi - atan((18*f*pi*(Delta/10)^(1/2))/125))/(2*f*pi)-100;
fimplicit(fun)
Warning: Function behaves unexpectedly on array inputs. To improve performance, properly vectorize your function to return an output with the same size and shape as the input arguments.

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeLabels and Styling についてさらに検索

製品

リリース

R2015b

タグ

質問済み:

2021 年 1 月 19 日

編集済み:

2021 年 1 月 19 日

Community Treasure Hunt

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

Start Hunting!

Translated by