saving . . . saved matrix operation has been deleted. matrix operation has been hidden .
matrix operation
Title
Question
how to interchange 3 rows in matrix operation

Scilab Matrix-Operations 06-07 min 30-40 sec 04-05-19, 2:55 p.m. mahajanvinay83

Answers:

Please elaborate on your question. 
04-05-19, 2:57 p.m. siddharth11235@gmail.com
a=[1 2 3; 2 3 4;2 3 6];
 a  = 

   1.   2.   3.
   2.   3.   4.
   2.   3.   6.

b=a(2,:)
c=a(3,:)
d=a(1,:)
a(2,:)=c
a(1,:)=b
a(3,:)=d
 a  = 

   2.   3.   4.
   2.   3.   6.
   1.   2.   3.





04-05-19, 3:26 p.m. drvkannan786

Login to add comment


Log-in to answer to this question.