mayank ghugretkar - MATLAB Central
photo

mayank ghugretkar


Last seen: 4 years ago Active since 2019

Followers: 0   Following: 0

Statistics

MATLAB AnswersFrom 06/19 to 03/25Use left and right arrows to move selectionFrom 06/19Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

2 Questions
4 Answers

RANK
2,110
of 297,547

REPUTATION
30

CONTRIBUTIONS
2 Questions
4 Answers

ANSWER ACCEPTANCE
50.0%

VOTES RECEIVED
15

RANK
 of 20,454

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 159,122

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 1
  • First Answer

View badges

Feeds

View by

Question


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 years ago | 42 answers | 0

42

answers

Question


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 ago | 2 answers | 0

2

answers

Answered
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 ago | 3

Answered
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 ago | 4