필터 지우기
필터 지우기

How do I input the following commands in Matlab?

조회 수: 1 (최근 30일)
Chris Herdelin
Chris Herdelin 2021년 9월 2일
댓글: Chris Herdelin 2021년 9월 3일
% a simple matlab program with matrix commands
x = [1 2 3; 4 5 6; 7 8 9];
disp x;
disp(x);
y = [11 22 23; 14 15 16; 17 18 19];
z=x+y;
w=x-y;
u= x*y;
a=[x, y];
b=[x; y];
c=x(:,2);
d=y(:,1);
e=x(2,3);
a) Create the preceding program and run it in Matlab and describe what each line of this
program does.
b) Add a line to this program which creates a new matrix, f, which is the transpose of x.
c) Add a line to this program which creates a new matrix, g, which is the identity matrix
plus x.

답변 (1개)

Walter Roberson
Walter Roberson 2021년 9월 2일
At the MATLAB command line, give the command
edit
That will bring up the MATLAB editor. Copy and paste those commands into the edit window that is brought up. When you are done, click the green Run button.
The first time you do that, it will prompt you to select a file name to save the file to; choose something appropriate (must start with an English letter A to Z or a to z, but characters after that can be letters or arabic numerals 0 to 9, or underscore). MATLAB will remember the name you select, and you will not be prompted to choose a name the next time you press the green Run button.
  댓글 수: 1
Chris Herdelin
Chris Herdelin 2021년 9월 3일
Thanks! What is the command for the identity matrix + another matrix, x?

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

카테고리

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

태그

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by