How to plot this equation

1 次查看(过去 30 天)
ijsonvjksrefdsb
ijsonvjksrefdsb 2024-1-11
回答: Paul 2024-1-11
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 个)

Paul
Paul 2024-1-11
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])

类别

Help CenterFile Exchange 中查找有关 Axis Labels 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by