photo

Stefan Schuberth


Last seen: 1 year ago Active since 2022

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

0 Questions
3 Answers

File Exchange

5 Files

RANK
6,119
of 297,457

REPUTATION
8

CONTRIBUTIONS
0 Questions
3 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
4

RANK
18,034 of 20,438

REPUTATION
2

AVERAGE RATING
0.00

CONTRIBUTIONS
5 Files

DOWNLOADS
7

ALL TIME DOWNLOADS
19

RANK

of 158,938

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

Submitted


uniquex
extension to the command "unique"

1 year ago | 1 download |

0.0 / 5

Submitted


FindAndReplaceInAllFiles
replaces text in multiple files

1 year ago | 1 download |

0.0 / 5

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

Submitted


once
detects if there is exactly one true value in an array.

2 years ago | 4 downloads |

0.0 / 5

Submitted


isIp4Address and mustBeIp4Address
small functions to check if a string is a valid ip address

2 years ago | 1 download |

0.0 / 5

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

2 years ago | 2

Submitted


tracer
traces programm flow

2 years ago | 0 downloads |

0.0 / 5

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

2 years ago | 2