Giancarlo milon
Followers: 0 Following: 0
Estadística
0 Preguntas
2 Respuestas
CLASIFICACIÓN
7.025
of 295.177
REPUTACIÓN
6
CONTRIBUCIONES
0 Preguntas
2 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
2
CLASIFICACIÓN
of 20.184
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 153.314
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
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.
This is my answer function [summa,index] = max_sum(v,n) b=1; summa = -1000000; %i start it with -1000000 because you ALWAYS ...
más de 3 años hace | 0
next prime number using While loops
You just want the next prime so you can just do function k = next_prime(n) k = n + 1 % now k = input + 1 while isprime(k) =...
más de 3 años hace | 2