Community Profile

photo

Scott Jones


Active since 2012

Statistics

Content Feed

View by

Question


Gaussian elimination only integers?
I'm trying to find a way to use matlab to only use integers it do gaussian elimnation. So far I have a code that works but it gi...

11 years ago | 0 answers | 0

0

answers

Question


How would i modify this script If i wanted to do integer only Gaussian elimination on a system of linear equations (Ax=b)?
function [x] = IntegerGaussrevised(A,b) n = size(A,1); %getting n A = [A,b]; %produces the augmented matrix ...

11 years ago | 1 answer | 0

1

answer