Matrix Operations
Title
Question
Use a suitable sequence of row operations on A to bring A to upper triangular form.1
Scilab Matrix-Operations 13-14 min 50-60 sec
Answers:
Use the function triU
D=[1 2 3; 4 5 6;1 3 6]
D =
1. 2. 3.
4. 5. 6.
1. 3. 6.
-->triU(D)
!--error 4
Undefined variable: triU
D=[1 2 3; 4 5 6;1 3 6]
D =
1. 2. 3.
4. 5. 6.
1. 3. 6.
-->triU(D)
!--error 4
Undefined variable: triU
Login to add comment