Community Profile

photo

Abhishek Sharma


Last seen: más de 1 año hace Con actividad desde 2021

Followers: 0   Following: 0

Estadísticas

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

Ver insignias

Feeds

Ver por

Pregunta


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

alrededor de 3 años hace | 2 respuestas | 0

2

respuestas

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

alrededor de 3 años hace | 0