Tobias Rubensson
Followers: 0 Following: 0
Feeds
提问
How do I create a function that solves systems of linear equations of N size?
function [findV] = size(N) A=2*diag(ones(N,1))-diag(ones(N-1,1),1)-diag(ones(N-1,1),-1); F=[1:N]'; findV =A\F; end Is it po...
4 years 前 | 1 个回答 | 0