photo

mayank ghugretkar


Last seen: 4 years 前 自 2019 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

2 个提问
4 个回答

排名
2,110
of 297,457

声誉
30

贡献数
2 个提问
4 个回答

回答接受率
50.0%

收到投票数
15

排名
 of 20,438

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 158,938

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 1
  • First Answer

查看徽章

Feeds

排序方式:

提问


caesar cyphor encryption problem .
Caesar's cypher is the simplest encryption algorithm. It adds a fixed value to the ASCII (unicode) value of each character of a ...

5 years 前 | 42 个回答 | 0

42

个回答

提问


how does a diff operation works for relational and logical cases with arrays ?
i was trying to work with diff operator after trying out sum[1 2 4 6] diff([14 5 6 14 32]) ans= -9 1 8 18 above statemen...

6 years 前 | 2 个回答 | 0

2

个回答

已回答
how to replace elements in top third, middle third, and bottom third of matix
function T=trio(n,m) T(3*n,m)=3; % or you can use random no. generation...but since we are assigning alues anyway , this vl wor...

6 years 前 | 3

已回答
Matlab function to take matrix as input and return elements in its four corners as output
function [top_left,top_right,bottom_left,bottom_right] = corners(M) top_left = M(1,1); top_right = M(1,end); bott...

6 years 前 | 4