Write Matlab Octave Program Ask User Enter Square Matrix Enter Column Vector B Solve Syste Q37024574

write matlab/octave program that that ask the user toenter a square matrix A, and then to enter a column vector b, tosolve a system of equations Ax=b


Solution


A = input(“Enter a squre matrix: “);b = input(“Enter a column vector: “);x = Ab;fprintf(“Solution isn”)disp(x)

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.