i dont know how to write this code in one command can someone help me

3 vues (au cours des 30 derniers jours)
mike john
mike john le 20 Avr 2020
Commenté : Rena Berman le 14 Mai 2020
Perform the following using one command
1. Generate an empty matrix N
2. Initialize elements of 𝑁 (3 ∗ 4)to be zeros
3. Generate matrix 𝑂 and fill it with ones (same size of N) 4. Matrix 𝐿= 3 1 7; 2 4 −2; 2 −1 0 , find matrix 𝑋 in which all elements of 𝐿 are doubled 6 2 14 ;4 8 −4; 4 −2 0
5. Find matrix 𝑌, in which all elements of 𝑋 are less by 1
6. Find matrix 𝑍, which is the sum of elements in 𝑌 and x
  3 commentaires
Stephen23
Stephen23 le 22 Avr 2020
Original question by mike john, recovered from Google Cache:
"i dont know how to write this code in one command can someone help me"
Perform the following using one command
1. Generate an empty matrix N
2. Initialize elements of ? (3 ∗ 4)to be zeros
3. Generate matrix ? and fill it with ones (same size of N) 4. Matrix ?= 3 1 7; 2 4 −2; 2 −1 0 , find matrix ? in which all elements of ? are doubled 6 2 14 ;4 8 −4; 4 −2 0
5. Find matrix ?, in which all elements of ? are less by 1
6. Find matrix ?, which is the sum of elements in ? and x
Rena Berman
Rena Berman le 14 Mai 2020
(Answers Dev) Restored edit

Connectez-vous pour commenter.

Réponse acceptée

BALAJI KARTHEEK
BALAJI KARTHEEK le 20 Avr 2020
N=[];%empty matrix geneation
N=zeros(3,4)% Question 2
O=ones(3,4)% Qusetion 3
L=[3 1 7; 2 4 -2;2 -1 0];
X=L+L;% Qusetion 4
Y=X-ones(3,3);% Qusetion 5
Z=Y+X% Qusetion 6

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by