photo

s pernot


Last seen: 3 months 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计学

All
  • First Answer
  • Promoter
  • Solver
  • Explorer

查看徽章

Feeds

排序方式:

已回答
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...

2 years 前 | 0

已回答
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...

2 years 前 | 0

已回答
Transforming a character double into date format
datetime('197709131435', 'InputFormat', 'yyyyMMddHHmm')

3 years 前 | 0

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

4 years 前