photo

Tobias Rubensson


Last seen: 2 years ago Active since 2020

Followers: 0   Following: 0

Statistics

Feeds

View by

Question


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...

3 years ago | 1 answer | 0

1

answer