Sumit Kumar Sharma
Followers: 0 Following: 0
Statistica
All
RANK
206.512
of 295.527
REPUTAZIONE
0
CONTRIBUTI
0 Domande
4 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Risposto
function with input a matrix and calcualte sum of elements of its diagonal and right of it
function summa=halfsum(x) [m,n]=size(x); sum=0 for p=1:m for q=1:n if p<=q sum=sum + x(p,q); ...
function with input a matrix and calcualte sum of elements of its diagonal and right of it
function summa=halfsum(x) [m,n]=size(x); sum=0 for p=1:m for q=1:n if p<=q sum=sum + x(p,q); ...
oltre 4 anni fa | 0
Risposto
caesar cyphor encryption problem .
function coded=caesar(a,b) x=double(a); k=mod(b,95); q=[]; for j=1:length(x) p=x(j)+k; if p<=126 && p>=32 ...
caesar cyphor encryption problem .
function coded=caesar(a,b) x=double(a); k=mod(b,95); q=[]; for j=1:length(x) p=x(j)+k; if p<=126 && p>=32 ...
oltre 4 anni fa | 0
Risolto
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
oltre 4 anni fa
Risposto
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); if n>l summa=0; index=-1; else p=l-n+1; ii=0; tota...
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); if n>l summa=0; index=-1; else p=l-n+1; ii=0; tota...
oltre 4 anni fa | 0
Risposto
how can i solve this ,can anyone provide me with code? whats wrong with my code ?
%% I think this might help function valid=valid_date(y,m,d) if isscalar(y) && y>0 && fix(y)==y && isscalar(m) && m<=12 && ...
how can i solve this ,can anyone provide me with code? whats wrong with my code ?
%% I think this might help function valid=valid_date(y,m,d) if isscalar(y) && y>0 && fix(y)==y && isscalar(m) && m<=12 && ...
oltre 4 anni fa | 0