Synthax for equation in script

4 ビュー (過去 30 日間)
SCIUSCIA
SCIUSCIA 2024 年 5 月 9 日
回答済み: SCIUSCIA 2024 年 5 月 9 日
I have to write this equation in matlab script
k and Delta are represented by linspace(r0) and linespace (r1)
It seems that the following does not work. Can someone give support
-sqrt((linspace(-r0, r0, 31).'+ linspace(-r1, r1, 31).'^2).'^2 + 4*(linspace(-r1, r1, 31).'^2)).';

採用された回答

SCIUSCIA
SCIUSCIA 2024 年 5 月 9 日
Now, it works. Thank you

その他の回答 (1 件)

Torsten
Torsten 2024 年 5 月 9 日
編集済み: Torsten 2024 年 5 月 9 日
r0 = 3;
r1 = 4;
delta = linspace(-r0,r0,31).';
k = linspace(-r1,r1,31).';
0.5*sqrt((delta+k.^2).^2+4*k.^2)
ans = 31x1
7.6322 6.7045 5.8473 5.0603 4.3427 3.6935 3.1113 2.5939 2.1379 1.7385
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>

カテゴリ

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

製品


リリース

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by