Feeds
已回答
creating a function to solve non linear equations using simple iteration method
n = 3; a = rand(n, n); b = rand(n, 1); % solve a * x + exp(x) = b for x x = zeros(n, 1); for itr = 1: 10 x = x...
creating a function to solve non linear equations using simple iteration method
n = 3; a = rand(n, n); b = rand(n, 1); % solve a * x + exp(x) = b for x x = zeros(n, 1); for itr = 1: 10 x = x...
1 year 前 | 0
