Azzera filtri
Azzera filtri

How do I input the following commands in Matlab?

2 visualizzazioni (ultimi 30 giorni)
% 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.

Risposte (1)

Walter Roberson
Walter Roberson il 2 Set 2021
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.

Categorie

Scopri di più su Entering Commands in Help Center e File Exchange

Tag

Prodotti


Release

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by