Abhishek Sharma
Followers: 0 Following: 0
Feeds
提问
speeding up my for loop
%My challenge is to find the number of divisors for a number without using "divisors" inbuild function %this program will work...
3 years 前 | 2 个回答 | 0
2
个回答已回答
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.
% tbh, I used some help from these forum answers too function [summa,index]=max_sum(v,n) % first checking whether the size of ...
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.
% tbh, I used some help from these forum answers too function [summa,index]=max_sum(v,n) % first checking whether the size of ...
4 years 前 | 0