필터 지우기
필터 지우기

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
Matt J
Matt J 2024년 1월 11일
but that doesn't seem right.
Why not?

댓글을 달려면 로그인하십시오.

답변 (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