How to divide and times in matlab

837 ビュー (過去 30 日間)
u-will-neva-no
u-will-neva-no 2011 年 12 月 11 日
回答済み: Zahin Akif 2020 年 2 月 19 日
Hey everyone!
Basically im trying to write my fist line of code, in matlab, to the given formula: |G(jw) |= 1/√(R^2+(wL- 1/wC)^2 ) Now, im not sure how to get the 1/wC term as I do not know how to divide in matlab. also, how do I get the ^2? All I want is the general form as an answer. I should be able to get it from there! Thanks!

採用された回答

bym
bym 2011 年 12 月 11 日
* % matrix multiply
.* %scalar multiply
/ % matrix divide
./ % scalar divide
^ % exponentiation
.^ % element-by-element exponentiation
so for your equation:
1./sqrt((R.^2+(w.*L-1/(w.*c)).^2));

その他の回答 (4 件)

Paulo Silva
Paulo Silva 2011 年 12 月 11 日
1/sqrt(R^2+(w*L-1/(w*C))^2)
if perhaps you are working with arrays or vectors and you want the operations to be performed element wise you must put a period before the symbols like this:
.^
.*
./

u-will-neva-no
u-will-neva-no 2011 年 12 月 12 日
Thanks!

Samra Sarwar
Samra Sarwar 2019 年 12 月 4 日
L = 2500
wi = 15
τ = L/wi
Please code this in MATLAB

Zahin Akif
Zahin Akif 2020 年 2 月 19 日
L = 2500
wi = 15
τ = L/wi

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by