saving . . . saved how to interchange any two rows in matrices??? has been deleted. how to interchange any two rows in matrices??? has been hidden .
how to interchange any two rows in matrices???
Title
Question
if i have to apply just row operations, i need the operation for interchanging any two rows for my convenience.

Scilab Matrix-Operations 00-01 min 20-30 sec 04-05-19, 2:39 p.m. Vishi.pals

Answers:

<span style="background-color: rgb(250, 250, 250);">For interchanging row 1 and 3,</span>
A([1 3],:)=A([3 1],:)
04-05-19, 2:40 p.m. rashpat93
true
04-05-19, 3:07 p.m. drvkannan786

Login to add comment


<span style="background-color: rgb(250, 250, 250);">A=[2 3 54;3 6 7;12 3 45];</span>
A([2 3],:)=A([3 2],:)

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


Log-in to answer to this question.