photo

Ahmed J. Abougarair


University of Tripoli

Last seen: 2 meses hace Con actividad desde 2020

Followers: 0   Following: 0

Mensaje

Estadística

MATLAB Answers

0 Preguntas
4 Respuestas

CLASIFICACIÓN
12.294
of 298.917

REPUTACIÓN
4

CONTRIBUCIONES
0 Preguntas
4 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
 of 20.660

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 162.875

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

  • Revival Level 1
  • First Answer

Ver insignias

Feeds

Ver por

Respondida
how to do polynomial division
syms x y p = x^3 - x*y^2 + 1; d = x + y; [r,q] = polynomialReduce(p,d)

más de 2 años hace | 0

Respondida
Write a function called max_sum that takes v, a row vector of numbers, and n, a positive integer as inputs. The function needs to find the n consecutive elements of v whose sum is the largest possible.
function [summa, index] = max_sum(v,n) k =length(v); if k==n summa = sum(sum(v)); index =1; return elseif k<n ...

alrededor de 5 años hace | 0

Respondida
Write a function called max_sum that takes v, a row vector of numbers, and n, a positive integer as inputs. The function needs to find the n consecutive elements of v whose sum is the largest possible.
function [summa, index]=max_sum(v,n) L=length(v); p=L-(n-1); k=0; t=0; for i=1:p z=n+k; k=k+1; s=0; for...

alrededor de 5 años hace | 0