필터 지우기
필터 지우기

Issue with matrix dimensions

조회 수: 1 (최근 30일)
Mohammed Darwish
Mohammed Darwish 2018년 7월 17일
댓글: Mohammed Darwish 2018년 7월 17일
I am getting and error "index exceeds matrix dimension". I am just loading a .mat file which has 2 equal sized coloums and placing the values of each coloum in a varialble. I did not define an index, for example to loop over the matrix. Any ideas why I get this error ?
mu_Au = 0;
mu_Si = 0;
k_B = 8.6173303e-5;
T = 300;
e0= 1.6021766e-19;
h = 6.62607e-34;
func_fermi = @(E,mu) 1./(1 + exp((E-mu)/(k_B*T)));
TE1 = load('TransmissionA1.mat');
E = TE1(:,1); TP = TE1(:,2);

채택된 답변

KSSV
KSSV 2018년 7월 17일
TE1 = load('TransmissionA1.mat');
Check TE1 will be a structure. You cannot access it like you did. Try:
S = load('TransmissionA1.mat');
TE1 = S.TE1 ;
E = TE1(:,1); TP = TE1(:,2);

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by