Community Profile

photo

Constantino Carlos Reyes-Aldasoro


City, University of London

Last seen: 7 dagar ago Active since 2016

Senior Lecturer in Biomedical Image Analysis at City, University of London. Huge Matlab fan, wrote the book "Biomedical Image Analysis Recipes in MATLAB: For Life Scientists and Engineers" published by Wiley-Blackwell.

Statistics

All
  • MATLAB Mini Hack 2022 Participant
  • Thankful Level 2
  • Knowledgeable Level 4
  • Revival Level 3
  • 12 Month Streak
  • 5-Star Galaxy Level 4
  • Personal Best Downloads Level 3
  • First Review
  • GitHub Submissions Level 3
  • First Submission
  • Thankful Level 1
  • First Answer

View badges

Content Feed

View by

Answered
How to make graph instead of disp in command window for real time measurment
disp will display a value or text on the command line, if what you want is a graph, then you will need to save that value into a...

17 dagar ago | 0

Answered
plotting graph on matlab in linux server connected via ssh
I am not sure if I have understood your problem, but I think that you have connected via ssh and thus running on a commmand-line...

17 dagar ago | 0

Answered
How to rotate a pointcloud data and align parallel with y-z axis?
This answer may solve your problem https://uk.mathworks.com/matlabcentral/answers/123763-how-to-rotate-entire-3d-data-with-x-y-...

17 dagar ago | 0

Answered
Make the black lines of a gabor thinner than the white lines in psychtoolbox
Very hard to help with questions like this. Please try to include your code, sample data and what you have already tried.

ungefär en månad ago | 1

Answered
How to define a constraint in MATLAB
You will not easily get someone to code for you. Best way to get help is to try something and if it does not work or you have pr...

2 månader ago | 0

Answered
Symbols not working after MATLAB update
Something similar to this happened to me when I migrated code from Windows to a Mac. It is annoying as things are not 100% trans...

3 månader ago | 0

Answered
Valley/Ridge tracing in N-D data
Hello Not sure if you still need this, but I have implemented a ridge tracing using Lindeberg's Scale Space algorithms. The ...

3 månader ago | 0

Answered
How to increase the length and thickness of the arrows in the EHfields plot
Hello Changing the thickness is not too difficult, but changing the length may be rather complicated. Let me illustrate. You ca...

4 månader ago | 1

| accepted

Answered
How to find active contours of multiple images simultaneously and how to overlay multiple of them?
Post what you have done so that it is possible to help.

4 månader ago | 0

Answered
Check the output is less than a limit for a period of time
This is a simple case of a comparision function < threshold

4 månader ago | 0

Answered
Matlab out of Memory and cannot be released
I think that you are not clearing what is consuming the memory, e.g. audio_data=get_audio();% a record object is called in th...

4 månader ago | 0

Answered
Subplot disappeared after getting its handle
Ok, I have now seen that the error is in the object that you are trying to copy, it should NOT be the subplot, but the actual ob...

5 månader ago | 0

| accepted

Answered
How to save training process output in MATLAB?
That should be pretty easy, train whatever architecture you are using (say you call that net) with whatever training data. Once ...

5 månader ago | 0

Answered
Subplot disappeared after getting its handle
The problem is the order in which you are passing the commands, you create a subplot in a figure, then you call for a new figure...

5 månader ago | 0

Answered
My plot for a photon traveling around a black hole isn't updating.
Is h_time being updated? if yes, then it may be due to the initial display with h_traj = plot(nan, nan); try not using nans bu...

5 månader ago | 0

Answered
Change size and location of plot area in plot window
You need to learn how to use the handles. Instead of just plotting things, grab the handle to the figure and the axes and then...

5 månader ago | 0

Answered
Trying to randomly permute a time series, error with time point
A=[1 2 3 4 5 6 7] A(1:3) A(-1:2) Yes, Matlab needs the index of the position starting from 1, so if you use negative numbers ...

5 månader ago | 0

| accepted

Answered
Create colorbar outside of parent of axes
That is easy, when you create figures and plots, you can grab the handle and then you can modify its properties: a = rand(64); ...

6 månader ago | 1

Answered
to extract information from a text file?
You can solve this problem by finding strings in the text that you have. Let's save the example that you have shown in variable ...

6 månader ago | 0

Answered
Can I overlay a large number of image?
Hello You can always overlay things by summing them, say your data is a 3D stack and each layer is one of your frames, a ...

7 månader ago | 0

Answered
Trying to get an answer for 'a' - while loop??
Run the code! a=0 while a<5 a = a + 2; end disp (a)

7 månader ago | 0

| accepted

Answered
How to fix this error : Not enough input arguments.
Hello Most probably you are not calling the function with all the necessary input parameters, look at this example in which t...

7 månader ago | 1

Answered
Is there any better alternative of four nested loops?
Hi In Matlab, if you think in matrices you can avoid many many many loops. For example, if you want to find if a column of a ce...

8 månader ago | 0

Answered
How to split the last 4 elements in a column into a new column?
In Matlab is better to think of matrices than to think of columns (like you would do in Excel for instance), so think of your fi...

8 månader ago | 0

Answered
Using Matlab compiler, accents are replaced by question marks.
try using the ascii code for the letters that you want to be displayed, e.g. disp(strcat('d',233,'terministes'))

8 månader ago | 0

Answered
How to visualise results of regionprops3 function?
What regionprops will do is to calculate the metrics for each of the elements in your data, and you can then use these to select...

8 månader ago | 0

Submitted


Segmentation of 3D HeLa Cells
Segmentation, Measurement and Visualisation of Nuclear Envelope of HeLa Cells observed with Electron Microscope

8 månader ago | 2 downloads |

Thumbnail

Answered
Shifting a specific part of the graph
What have you already tried?

8 månader ago | 0

Answered
How to create two-dimensional boxplots
Have a look at this code: https://uk.mathworks.com/matlabcentral/fileexchange/68006-boxplot3d-create-three-dimensional-boxplo...

8 månader ago | 0

Answered
Error with plot command
I do not think this is a problem of plot, but rather that your variable has only 1 value and you are addressing a higher value. ...

8 månader ago | 1

Load more