Community Profile

photo

Constantino Carlos Reyes-Aldasoro


City, University of London

Last seen: 6 jours il y a Actif depuis 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.

Statistiques

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

Afficher les badges

Content Feed

Afficher par

A répondu
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...

15 jours il y a | 0

A répondu
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...

15 jours il y a | 0

A répondu
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-...

15 jours il y a | 0

A répondu
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.

environ un mois il y a | 1

A répondu
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 mois il y a | 0

A répondu
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 mois il y a | 0

A répondu
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 mois il y a | 0

A répondu
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 mois il y a | 1

| A accepté

A répondu
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 mois il y a | 0

A répondu
Check the output is less than a limit for a period of time
This is a simple case of a comparision function < threshold

4 mois il y a | 0

A répondu
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 mois il y a | 0

A répondu
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 mois il y a | 0

| A accepté

A répondu
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 mois il y a | 0

A répondu
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 mois il y a | 0

A répondu
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 mois il y a | 0

A répondu
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 mois il y a | 0

A répondu
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 mois il y a | 0

| A accepté

A répondu
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 mois il y a | 1

A répondu
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 mois il y a | 0

A répondu
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 mois il y a | 0

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

7 mois il y a | 0

| A accepté

A répondu
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 mois il y a | 1

A répondu
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 mois il y a | 0

A répondu
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 mois il y a | 0

A répondu
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 mois il y a | 0

A répondu
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 mois il y a | 0

A soumis


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

8 mois il y a | 2 téléchargements |

Thumbnail

A répondu
Shifting a specific part of the graph
What have you already tried?

8 mois il y a | 0

A répondu
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 mois il y a | 0

A répondu
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 mois il y a | 1

Charger plus