Feeds
回答済み
Performing Gauss Elimination with MatLab
function x = solveGauss(A,b) s = length(A); for j = 1:(s-1) for i = s:-1:j+1 m = A(i,j)/A(j,j); A(i,:) ...
Performing Gauss Elimination with MatLab
function x = solveGauss(A,b) s = length(A); for j = 1:(s-1) for i = s:-1:j+1 m = A(i,j)/A(j,j); A(i,:) ...
6年弱 前 | 7
質問
How to divide elements with 4 points in triangles?
ele = [1 2 5 4; 2 3 6 5; 4 5 8 7; 5 6 9 8]; % ele is a matrix with 4 rows and 4 columns % Now T shall divide each row in 2 tri...
約6年 前 | 1 件の回答 | 0

