Community Profile

photo

Abhishek Sharma


Last seen: plus d'un an il y a Actif depuis 2021

Followers: 0   Following: 0

Statistiques

All
  • Indexing II Master
  • Introduction to MATLAB Master
  • CUP Challenge Master
  • Community Group Solver
  • Thankful Level 1
  • Promoter
  • Project Euler I
  • Solver
  • First Answer

Afficher les badges

Feeds

Afficher par

Question


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

environ 3 ans il y a | 2 réponses | 0

2

réponses

A répondu
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 ...

environ 3 ans il y a | 0