필터 지우기
필터 지우기

Doubts regarding MATLAB Fundamentals-self paced Course Topic

조회 수: 66 (최근 30일)
Pranav Illinda
Pranav Illinda 2024년 7월 16일 6:44
댓글: Pranav Illinda 2024년 7월 19일 8:26
sir,
In the topic of Matrix Multiplications, regarding Modeling Loons Populations, how the eleements of Population change matrix named as popChange are formed and loons population row matrix elements are also how are they formed. Can you please clarify my doubts.

답변 (1개)

Deepak
Deepak 2024년 7월 16일 7:57
Hi,
The matrix popChange is a 4x4 matrix, created using the matrix notation in MATLAB.The entire matrix is specified within square brackets [ ], and rows are separated by semicolons (;) –
popChange = [0 0 0 .145;
.6 .375 0 0;
0 .225 .56 .05;
0 0 .35 .86];
The array “loons is a column vector, created using the column vector notation in MATLAB. The elements of the vector are specified within square brackets [ ] and it can be created by taking transpose of a row vector with the help of (‘) notation.
loons = [41 61 52 62]';
The elements of the matrix “popChange and column vector “looms” is sample data .
Attaching the documentation of Matrices and Arrays for reference –

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by