Community Profile

photo

Stefan Schuberth


Last seen: 3 months ago Active since 2022

Followers: 0   Following: 0

Statistics

All
  • First Submission
  • First Answer

View badges

Feeds

View by

Submitted


uniquex
extension to the command "unique"

9 months ago | 1 download |

Submitted


FindAndReplaceInAllFiles
replaces text in multiple files

9 months ago | 1 download |

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

1 year ago | 0

Submitted


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

1 year ago | 4 downloads |

Submitted


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

1 year ago | 1 download |

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

1 year ago | 2

Submitted


tracer
traces programm flow

1 year ago | 0 downloads |

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

1 year ago | 2