photo

mayank ghugretkar


Last seen: 5년 초과 전 2019년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

2 질문
4 답변

순위
2,147
of 300,365

평판
30

참여
2 질문
4 답변

답변 채택
50.0%

획득한 표
15

순위
 of 20,933

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 168,262

참여
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 ...

6년 초과 전 | 답변 수: 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년 초과 전 | 답변 수: 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년 초과 전 | 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년 초과 전 | 4