Statistics
RANK
1.335
of 262.763
REPUTATION
38
CONTRIBUTIONS
3 Questions
16 Answers
ANSWER ACCEPTANCE
0.0%
VOTES RECEIVED
11
RANK
134 of 17.989
REPUTATION
8.713
AVERAGE RATING
4.90
CONTRIBUTIONS
16 Files
DOWNLOADS
349
ALL TIME DOWNLOADS
75682
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Submitted
addFitLine
A convenience function to superimpose a polynomial fit to already plotted data
17 Tage ago | 11 downloads |

How to convert a closed curve into a binary mask
I think you want the built-in function poly2mask
etwa ein Jahr ago | 0
Unrecognized function or variable
You need to install this: https://www.mathworks.com/matlabcentral/fileexchange/87959-computer-vision-toolbox-model-for-yolo-v3...
etwa ein Jahr ago | 1
Submitted
notBoxPlot
This function visualizes raw (grouped) data along with the mean, 95% confidence interval, and 1 SD.
fast 2 Jahre ago | 40 downloads |

how to save Struct to txt file
This might do what you want: https://github.com/ewiger/yamlmatlab It handles nested structures too. For example, if I define a ...
mehr als 2 Jahre ago | 0
Submitted
measurePSF
Measure a point spread function and other parameters on a microscope
mehr als 2 Jahre ago | 5 downloads |

How can I display multiline text in a push button by setting its 'String' property ?
You can have multi-line text in a button as follows: h_button.String='<html>line one<br />line 2 &pi</html>'; This is tested...
mehr als 2 Jahre ago | 5
Submitted
raacampbell/sigstar
Add significance bars and asterisks to various plot types
mehr als 3 Jahre ago | 41 downloads |

Question
Correcting pincushion distortion along one axis
Hello, I have a microscopy optical system that produces pincushion distortion largely along one axis, with the other being ne...
etwa 4 Jahre ago | 0 answers | 0
0
answersSubmitted
SimpleMScanner
Basic (demo) 2-photon microscope scanning software
etwa 4 Jahre ago | 3 downloads |

Submitted
raacampbell/shadedErrorBar
Creates an attractive shaded error region rather than discrete bars.
mehr als 4 Jahre ago | 203 downloads |

Question
Control running MATLAB application via a web page
I have a MATLAB program that runs for several hours controlling a piece of hardware and acquiring data. I monitor the output of ...
fast 5 Jahre ago | 0 answers | 0
0
answersSubmitted
Alicat-MATLAB
Control Alicat mass flow controllers over the serial port
fast 5 Jahre ago | 1 download |

Submitted
MaSIV NeuriteTracer
Simple interactive tracing software for neuronal axons and dendrites
fast 5 Jahre ago | 1 download |

Difference between MATLAB tic-toc time and actual time measured with a stop watch
You could also try "profview" if you want to see what's taking the time in your function. You'll get loads of detailed informati...
etwa 5 Jahre ago | 0
| accepted
How to find indices of similar values in a vector?
I'm unsure if you're looking for sequential numbers or not. The following just looks for repeats. Does it do what you want? ...
etwa 5 Jahre ago | 1
| accepted
Problem with 'Patch' graphics in 2014b - Splits in two along diagonal
This issue has been present for a decade at least. Disappointing, it must be said.
mehr als 5 Jahre ago | 2
Question
Has anyone got an interface for Thorlab's Kinesis software?
Hello, Has anyone succeeded in interfacing with the ThorLabs Kinesis software for linear stage controllers? I have so far onl...
fast 6 Jahre ago | 0 answers | 0
0
answersWhy does Matlab set a custom LD_LIBRARY_PATH when execting "system" on Linux?
Does this help? http://uk.mathworks.com/help/matlab/matlab_external/building-and-running-engine-applications-on-unix-operating-s...
etwa 6 Jahre ago | 0
How to put values in matrix based on some condition?
>> r=rand(5); >> r(2:end,1)=0 r = 0.0596 0.0967 0.6596 0.4538 0.1734 0 0.8181 0.518...
fast 7 Jahre ago | 0
| accepted
Why can i not plot this?
You can't plot anything because your code is full of mistakes. For starters, x and y are both just one number so you don't have ...
fast 7 Jahre ago | 1
When will Jacket be merged into Parallel Computing Toolbox?
It seems they're now at http://arrayfire.com/ and are open source.
fast 7 Jahre ago | 0
When will MATLAB 2014b release?
This release is unusually late. HG2 update is a big deal, I'd say... http://undocumentedmatlab.com/blog/hg2-update
fast 8 Jahre ago | 0
how to register CT brain image & MRI bain image of same patient?
This likely isn't trivial because the images will look quite different and may be of different resolutions, etc. I suspect you'l...
etwa 9 Jahre ago | 1
How to using PCA or LDA to classify data (wine dataset)?
PCA is used for dimensionality reduction and to help you visualise higher dimensional data. On its own it is not a classificatio...
etwa 9 Jahre ago | 0
| accepted
Solved
Too mean-spirited
Find the mean of each consecutive pair of numbers in the input row vector. For example, x=[1 2 3] ----> y = [1.5 2.5] x=[1...
mehr als 9 Jahre ago
Solved
surrounded matrix
With a given matrix A (size m x n) create a matrix B (size m+2 x n+2) so that the matrix A is surrounded by ones: A = [1 2 ...
mehr als 9 Jahre ago