photo

Daniele Busi


Last seen: 17 days ago Active since 2018

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

1 Question
2 Answers

Cody

0 Problems
1 Solution

RANK
14,501
of 297,503

REPUTATION
3

CONTRIBUTIONS
1 Question
2 Answers

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
2

RANK
 of 20,449

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
123,606
of 159,017

CONTRIBUTIONS
0 Problems
1 Solution

SCORE
20

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 1
  • Solver
  • First Answer

View badges

Feeds

View by

Answered
Check if filename is valid.
function bool = isLegalPath(str) bool = true; try java.io.File(str).toPath; catch bool = false;...

5 years ago | 0

Question


A class to simulate missing arguments in function calls
My goal is to design a class named "Unknown", that simulates missing arguments in function calls. For example, this script fun...

5 years ago | 4 answers | 1

4

answers

Answered
Can I use @subClass folder inside @superClass folders to create a class hierarchy?
The following workaround works for me in MATLAB R2019b. In the same folder, define: A class, in the form of a single file or @...

5 years ago | 1

Solved


Assign matrix rows/columns to separate variables
This is a slight variant of <http://www.mathworks.com/matlabcentral/cody/problems/2668-assign-matrix-elements-to-separate-variab...

6 years ago