Shun Yan
Followers: 0 Following: 0
Statistica
MATLAB Answers
0 Domande
2 Risposte
RANK
80.033
of 293.962
REPUTAZIONE
0
CONTRIBUTI
0 Domande
2 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
0
RANK
of 150.261
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Risposto
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.
function [a,b]=max_sum(A,B) n=1; C=0; for ii = 1:(size(A,2)-B+1) C(n)=sum(A(n:(B+n-1))); n=n+1; end if B>size(A,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.
function [a,b]=max_sum(A,B) n=1; C=0; for ii = 1:(size(A,2)-B+1) C(n)=sum(A(n:(B+n-1))); n=n+1; end if B>size(A,2...
oltre 3 anni fa | 0
Risposto
Write a function called valid_date that takes three positive integer scalar inputs year, month, day. If these three represent a valid date, return a logical true, otherwise false. The name of the output argument is valid. If any of the inputs is not
Why would this code not pass the scalar test? %Return false if the input is not scalar
Write a function called valid_date that takes three positive integer scalar inputs year, month, day. If these three represent a valid date, return a logical true, otherwise false. The name of the output argument is valid. If any of the inputs is not
Why would this code not pass the scalar test? %Return false if the input is not scalar
oltre 3 anni fa | 0