Write Octave statements to solve the following linear system. You don't have to find the final values for x, y, and z. 6x - 4y + z = 3 3y - 7z = -4 x + 9y - 5z = 5

Leroy Gray

Leroy Gray

Answered question

2022-09-01

Write Octave statements to solve the following linear system. You don't have to find the final values for x, y, and z.
6 x 4 y + z = 3 3 y 7 = 4 x + 9 y 5 z = 5

Answer & Explanation

letovanjelm

letovanjelm

Beginner2022-09-02Added 13 answers

Octave: 1 > A = [ 6 , 4 , 1 ; 0 , 3 , 7 ; 1 , 9 , 5 ]
Octave : 2 > b = [ 3 ; 4 ; 5 ]
for solve:
Octave : 3 > x = A / b

Do you have a similar question?

Recalculate according to your conditions!

Ask your question.
Get an expert answer.

Let our experts help you. Answer in as fast as 15 minutes.

Didn't find what you were looking for?