What does the matlab code in steps 2 and 3 mean?

답변 (1개)

Wayne King
Wayne King 2012년 7월 29일
편집: Wayne King 2012년 7월 29일

0 개 추천

M is a 3-D matrix.
M(:,:,1) = Hphi;
Means set the first "page" of the 3rd dimension equal to the output of Heaviside with inputs phi and epsilon, which here is Hphi.
M(:,:,2) = 1-Hphi;
Means set the second "page" of the 3rd dimension equal to 1-Hphi.
In general, M(:,:,index) is the way of assigning all rows and all columns of the index-th page of a 3D matrix a given value.
For example:
M = zeros(2,2,2); % M is 2x2x2
M(:,:,1) = 1;
M(:,:,2) = 2;
Now M(:,:,1) is a 2x2 matrix of ones and M(:,:,2) is a 2x2 matrix of 2s.
N_class = size(M,3);
Is just returning the size of M in the 3rd dimension
M = ones(2,2,4);
size(M,3)
Are you trying to read the Matlab documentation?

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

질문:

2012년 7월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by