Community Profile

photo

Sumit Kumar Sharma


Last seen: 3 years 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计数据

All
  • Solver
  • First Answer

查看徽章

Feeds

排序方式:

已回答
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); ...

4 years 前 | 0

已回答
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 ...

4 years 前 | 0

已解决


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:...

4 years 前

已回答
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 && ...

4 years 前 | 0