photo

Stefan Schuberth


Last seen: 2 years ago Active since 2022

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

0 Questions
3 Answers

File Exchange

5 Files

RANK
6,222
of 300,379

REPUTATION
8

CONTRIBUTIONS
0 Questions
3 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
4

RANK
18,331 of 20,931

REPUTATION
2

AVERAGE RATING
0.00

CONTRIBUTIONS
5 Files

DOWNLOADS
7

ALL TIME DOWNLOADS
19

RANK

of 168,262

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • First Submission
  • First Answer

View badges

Feeds

View by

Answered
Rename variable throughout project/directory
Is this a joke? Every modern IDE can do that. This is called refactoring. Finally give more resources to Matlab's IDE department...

2 years ago | 0

Answered
How to support default parameter in MATLAB FUNCTION ?
https://de.mathworks.com/help/matlab/ref/arguments.html?searchHighlight=arguments&s_tid=srchtitle_arguments_1 function testFun(...

3 years ago | 2

Answered
How to find the zero crossing in x and time data sets?
If you have (x,y) data and want to do it without using loops try that: i=find(y(1:end-1).*y(2:end)<0); % index of zero crossing...

3 years ago | 2