How to plot this equation

I'm trying to plot the figure below, but I don't really understand what function to use to achieve this.
β is defined as , where the T used is for low temperature
I tried using syms delta and fplot(@(delta) U) but that doesn't seem right.

1 件のコメント

Matt J
Matt J 2024 年 1 月 11 日
but that doesn't seem right.
Why not?

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

回答 (1 件)

Paul
Paul 2024 年 1 月 11 日

0 投票

syms U Delta beta T k_beta
U = -Delta/2*tanh(beta*Delta/2)
U = 
UoverDelta = U/Delta
UoverDelta = 
UoverDelta = subs(UoverDelta,beta,inv(k_beta*T))
UoverDelta = 
syms w
UoverDelta = subs(UoverDelta,k_beta*T/Delta,w)
UoverDelta = 
figure
fplot(UoverDelta,[0 10])
ylim([-1 0])

カテゴリ

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

タグ

質問済み:

2024 年 1 月 11 日

回答済み:

2024 年 1 月 11 日

Community Treasure Hunt

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

Start Hunting!

Translated by