필터 지우기
필터 지우기

Plotting an equation with Matlab

조회 수: 1 (최근 30일)
Pouyan Msgn
Pouyan Msgn 2018년 11월 5일
편집: TADA 2018년 11월 5일
Hi I will plot T(E)
where K2 is
h=1.36e-34
clc
clear all
m=1.6e-18;
U=5e-19;
E=10e-19:0.1:20e-19;
a=1e-9;
h=1.36e-34;
k=sqrt(2*m.*(E-U));
k2=k/h; c=(U^2)*(sin(0.5*a*k2).^2)./(4*E.*(E-U))
T=1./(1+c);
plot(E,T)
But I see an empty plot!
Can someone help me please ?

답변 (1개)

TADA
TADA 2018년 11월 5일
편집: TADA 2018년 11월 5일
Your problem is the initialization of E you did:
E=10e-19:0.1:20e-19;
your interval is 17 orders of magnitude higher than the values, so you get a scalar instead of a vector
you should use an interval of the same order of magnitude or less
E=10e-19:0.1e-19:20e-19;

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by