Feeds
질문
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...
13년 초과 전 | 답변 수: 0 | 0
0
답변질문
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 ...
13년 초과 전 | 답변 수: 1 | 0