photo

Dhinesh Kumar


Last seen: 2 years ago Active since 2020

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

0 Questions
1 Answer

Cody

0 Problems
4 Solutions

ThingSpeak

1 Public Channel

RANK
176,069
of 300,365

REPUTATION
0

CONTRIBUTIONS
0 Questions
1 Answer

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
 of 20,933

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
55,210
of 168,262

CONTRIBUTIONS
0 Problems
4 Solutions

SCORE
61

NUMBER OF BADGES
2

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
1 Public Channel

AVERAGE RATING
30

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Promoter
  • Solver
  • First Review
  • First Answer

View badges

Feeds

View by

Solved


String Logic 2
Example: ROSY --> HEIO TRUST --> JHKIJ MOSTLY --> CEIJBO

3 years ago

Solved


Draw 'C'.
Given x as input, generate a x-by-x matrix 'C' using 0 and 1. example: x=4 ans= [0 1 1 1 1 0 0 0 ...

3 years ago

Solved


Draw 'B'
Draw a x-by-x matrix 'B' using 1 and 0. (x is odd and bigger than 4) Example: x=5 ans= [1 1 1 1 0 1 0 0 0 1 ...

3 years ago

Channel


Patient Data

3 years ago

Solved


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 ago

Answered
caesar cyphor encryption problem .
function txt = caesar(txt,key) txt = double(txt) + key; first = double(' '); last = double('~'); % use mod t...

5 years ago | 0