Stefan Schuberth
Followers: 0 Following: 0
Statistics
RANK
6,045
of 295,448
REPUTATION
8
CONTRIBUTIONS
0 Questions
3 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
4
RANK
17,925 of 20,227
REPUTATION
2
AVERAGE RATING
0.00
CONTRIBUTIONS
5 Files
DOWNLOADS
7
ALL TIME DOWNLOADS
18
RANK
of 153,872
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
Feeds
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...
1 year ago | 0
Submitted
isIp4Address and mustBeIp4Address
small functions to check if a string is a valid ip address
2 years ago | 1 download |
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(...
2 years ago | 2
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...
2 years ago | 2