How do I input the following commands in Matlab?

2 次查看(过去 30 天)
% 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.

类别

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