Jonathan - MATLAB Central
photo

Jonathan


Last seen: 10 months ago Active since 2011

Followers: 0   Following: 0

Message

Statistics

All
MATLAB AnswersCodyFrom 11/11 to 03/25Use left and right arrows to move selectionFrom 11/11Use 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

1 Question
8 Answers

Cody

0 Problems
4 Solutions

RANK
2,320
of 297,503

REPUTATION
27

CONTRIBUTIONS
1 Question
8 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
13

RANK
 of 20,449

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
59,306
of 159,017

CONTRIBUTIONS
0 Problems
4 Solutions

SCORE
50

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Solver
  • Knowledgeable Level 1
  • First Answer

View badges

Feeds

View by

Solved


Replicate elements in vectors
Replicate each element of a row vector (with NaN) a constant number of times. Examples : n=2, A=[1 2 3] -> [1 1 2 2 3 3] n=0...

7 years ago

Solved


Set the array elements whose value is 13 to 0
Input A either an array or a vector (which can be empty) Output B will be the same size as A . All elements of A equal to 13...

7 years ago

Solved


Find the largest value in the 3D matrix
Given a 3D matrix A, find the largest value. Example >> A = 1:9; >> A = reshape(A,[3 1 3]); >> islargest(A) a...

7 years ago

Solved


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

7 years ago