フィルターのクリア

I want to plot a equation. I've attached it. Who can Help me and do it???

1 回表示 (過去 30 日間)
vahid torabi
vahid torabi 2015 年 7 月 2 日
編集済み: Walter Roberson 2015 年 7 月 5 日
Who can plot my equation? F=F(w), w0,R,L are parameters.
  2 件のコメント
Brendan Hamm
Brendan Hamm 2015 年 7 月 2 日
What have you tried already? I'm more than willing to help you learn, not at all willing to do your work for you.
RahulTandon
RahulTandon 2015 年 7 月 5 日

i think i can do it. will get back to you in an hour or so. tandonrahul@live.com. the final o/p should be a script.

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

採用された回答

RahulTandon
RahulTandon 2015 年 7 月 5 日
編集済み: Walter Roberson 2015 年 7 月 5 日
%%SECTION START
syms a(w) b(w) w w0 R L F M(w) N(w) a1(w) clear;
R = 100; %ohms lets say
w0 = 200*pi ; %radians per second, say
L = 1; % Henry, say
clc;
the abv can be replaced by parameters of the function, later.
clc;
M(w) = w0^2 - w^2;
N(w) = R*w/L;
a(w) = M(w)*w0^2/(M(w)^2 + N(w)^2);
a1(w) = a(w)/w0^2;
b(w) = N(w)/(M(w)^2 + N(w)^2);
F(w) = (a(w)^2 + b(w)^2)^(1/2);
%%now plot
clf;
ezplot3(F(w),a1(w),b(w));
pause(3);
hold on;
ezplot(F(w));

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by