Community Profile

photo

mayank ghugretkar


Last seen: fast 4 Jahre vor Aktiv seit 2019

Followers: 0   Following: 0

Statistiken

  • Thankful Level 1
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


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

fast 5 Jahre vor | 42 Antworten | 0

42

Antworten

Frage


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

fast 5 Jahre vor | 2 Antworten | 0

2

Antworten

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

fast 5 Jahre vor | 3

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

fast 5 Jahre vor | 4