saving . . . saved Matrix Operations has been deleted. Matrix Operations has been hidden .
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 04-05-19, 12:49 p.m. Poonam28

Answers:

Use the function triU
04-05-19, 12:49 p.m. siddharth11235@gmail.com


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
04-05-19, 1:01 p.m. Poonam28


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
04-05-19, 1:01 p.m. Poonam28


problem not solved by function

04-05-19, 1:02 p.m. Poonam28


use triu not triU.
04-05-19, 2:01 p.m. rashpat93


Log-in to answer to this question.