
English, German
Statistics
RANK
215,077
of 284,583
REPUTATION
0
CONTRIBUTIONS
2 Questions
5 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
0
RANK
1,955 of 19,216
REPUTATION
894
AVERAGE RATING
4.90
CONTRIBUTIONS
20 Files
DOWNLOADS
96
ALL TIME DOWNLOADS
7139
RANK
of 137,336
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
Content Feed
Free hand drawing in Matlab with output is XY coordinate of trajectory.
Another demo that stores the xy values: disp('click inside figure') disp('hit "return" button to finish') figure(1) clf axh...
3 months ago | 0
How can I move the Xlabel without moving the X-Axis?
If you want a constant distance from the x axis, use this code: % Move x label closer to x-axis, here 16 px figure(1); clf p...
9 months ago | 0
How do I change the datatip font color?
For older Matlab versions (e.g. R2016) replace if strcmpi(event_obj.Interpreter,'tex') with if isprop(event_obj,'Interpr...
1 year ago | 0
Converting hh:mm:ss into seconds
About 100 times faster is: t='14:35:59.812'; seconds=sum(sscanf(t,'%f:%f:%f').*[3600;60;1]);
2 years ago | 0
Question
CloseRequestFcn of GUI not working with wrong current folder
I have in the GUI m-file a 'figure1_CloseRequestFcn'. This works fine as long the current Matlab folder is not changed. When I ...
3 years ago | 1 answer | 0
1
answernlinfit with modelfun as an integral2 and variable integral limits
I could not figure out how to solve the problem with 'nIinfit' , therefore, I solved the problem by using ‘fminsearch’. %Given...
3 years ago | 0
| accepted
Question
nlinfit with modelfun as an integral2 and variable integral limits
I have several volumes over specific areas and want to know which 3D bell shape fits best for those partial volumes. I try to es...
3 years ago | 1 answer | 0