Uday Pradhan - MATLAB Central
photo

Uday Pradhan

Last seen: 27 days ago Active since 2020

Followers: 0   Following: 0

Message

Statistics

All
MATLAB AnswersCodyFrom 08/20 to 04/25Use left and right arrows to move selectionFrom 08/20Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 Questions
90 Answers

Cody

0 Problems
5 Solutions

RANK
384
of 297,999

REPUTATION
210

CONTRIBUTIONS
0 Questions
90 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
17

RANK
 of 20,519

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
52,330
of 160,124

CONTRIBUTIONS
0 Problems
5 Solutions

SCORE
61

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • 6 Month Streak
  • Revival Level 2
  • Knowledgeable Level 4
  • Solver
  • First Answer

View badges

Feeds

View by

Solved


Tic Tac Toe FTW
Given a tic tac toe board: * 1 represents X * 0 represents empty. * -1 represents O It is X's move. If there is an imme...

4 years ago

Solved


Sum the 'edge' values of a matrix
Sum the 'edge' values of an input matrix (the values along the perimeter). Example [1 2 3 4 5 6 7 8 9] Output = ...

4 years ago

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

4 years ago

Solved


Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2...

4 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