photo

s pernot


Last seen: 10 months ago Active since 2020

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

0 Questions
3 Answers

Cody

0 Problems
9 Solutions

RANK
182,782
of 300,527

REPUTATION
0

CONTRIBUTIONS
0 Questions
3 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
 of 21,018

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
38,509
of 169,525

CONTRIBUTIONS
0 Problems
9 Solutions

SCORE
110

NUMBER OF BADGES
2

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • First Answer
  • Promoter
  • Solver
  • Explorer

View badges

Feeds

View by

Answered
Passing Arguments to a UIMenu selected Function
it also works similaly with appdesigner... in the latter case, you can simply attach handle struct as a app property you decla...

4 years ago | 0

Answered
Passing Arguments to a UIMenu selected Function
hi jason you have several options - see y. altman undocumented site for further details here are my preferred way to solve thi...

4 years ago | 0

Answered
Transforming a character double into date format
datetime('197709131435', 'InputFormat', 'yyyyMMddHHmm')

4 years ago | 0

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

4 years ago

Solved


only input
Return the output without writing any code into the function.

4 years ago

Solved


Concatenate two strings
Its very easy. Just concatenate two strings.

4 years ago

Solved


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

4 years ago

Solved


De-dupe
Remove all the redundant elements in a vector, but keep the first occurrence of each value in its original location. So if a =...

4 years ago

Solved


Without the French accent please!
Suppress the French accent. Example 'Déjà présent' -> 'Deja present'

5 years ago

Solved


Find nth maximum
Find nth maximum in a vector of integer numbers. Return NaN if no such number exists. x = [2 6 4 9 -10 3 1 5 -10]; So ...

5 years ago