Sumit Kumar Sharma
Followers: 0 Following: 0
Statistics
All
RANK
206.512
of 295.448
REPUTATION
0
CONTRIBUTIONS
0 Questions
4 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 20.227
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Answered
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); ...
meer dan 4 jaar ago | 0
Answered
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 ...
meer dan 4 jaar ago | 0
Solved
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:...
meer dan 4 jaar ago
Answered
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...
meer dan 4 jaar ago | 0
Answered
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 && ...
meer dan 4 jaar ago | 0