Chaohua
Followers: 0 Following: 0
Feeds
已回答
I get an error, what's wrong? on Sparse matrix logic and answer
function matrix = sparse2matrix(A) matrix_m = ones(A{1}); matrix_m = A{2} * matrix_m; for i = 3:length(A) r = A{i}...
I get an error, what's wrong? on Sparse matrix logic and answer
function matrix = sparse2matrix(A) matrix_m = ones(A{1}); matrix_m = A{2} * matrix_m; for i = 3:length(A) r = A{i}...
5 months 前 | 0
已回答
Write a function max_sum that takes v a row vector of numbers & n,a positive integer as inputs.The function needs to find n consecutive elements of v whose sum is largest possible.It returns summa & index of first element of n consecutive integers.
function [sumnma,index]=max_sum (v,n) L = length(v); summa = zeros(1,L-n+1);%pre-allocation if n>L summa = 0; index...
Write a function max_sum that takes v a row vector of numbers & n,a positive integer as inputs.The function needs to find n consecutive elements of v whose sum is largest possible.It returns summa & index of first element of n consecutive integers.
function [sumnma,index]=max_sum (v,n) L = length(v); summa = zeros(1,L-n+1);%pre-allocation if n>L summa = 0; index...
5 months 前 | 0