Community Profile

photo

Simon Allosserie


Last seen: más de 1 año hace Con actividad desde 2020

Followers: 0   Following: 0

Engineer

Estadísticas

All
  • Thankful Level 3
  • Thankful Level 2
  • Treasure Hunt Participant
  • Introduction to MATLAB Master
  • Knowledgeable Level 2
  • Community Group Solver
  • Solver
  • First Answer

Ver insignias

Feeds

Ver por

Pregunta


How to steer uiprogressdlg from external function
Hello I am building an App wit appdesigner in which a rather complex function is called. The function is at the moment not with...

más de 1 año hace | 1 respuesta | 0

1

respuesta

Pregunta


How to convert rows to logical
I am filtering a set of values in a column vector in multiple steps. In the end, I get the row numbers of the values that should...

más de 1 año hace | 2 respuestas | 0

2

respuestas

Pregunta


How to apply MinSeparation on both islocalmin and islocalmax
I am using findlocalmin and findlocalmax to find the local extrema of a curve (actually, it's a column of a greyscale image). Th...

más de 1 año hace | 0 respuestas | 0

0

respuestas

Pregunta


App Designer shuts down when processing big files
I have an app that processes .tif files in different resolutions. It compares two images printed on two different printers to ch...

casi 2 años hace | 0 respuestas | 0

0

respuestas

Respondida
How to change x-axis ticks labels in stackedplot?
Use xtick and xticklabels to change to the A, S, T, ... labels https://nl.mathworks.com/help/matlab/ref/xticks.html I don't...

alrededor de 2 años hace | 1

Respondida
Put values from an array in a while loop into a table
To put info in tables, you best put them in columns. So you could define coefficient vectors for each coefficient, and through y...

alrededor de 2 años hace | 0

Respondida
combine vectors in different length in to one matrix
You can combine vectors of different lengths in cell arrays, instead of adding zeros to your vectors. It will be easier to proce...

alrededor de 2 años hace | 1

| aceptada

Pregunta


How to fill empty matrix elements based on surrounding values
I have a matrix with a lot of empty values and some numbers. A column could look like this (simplified for the sake of this ques...

alrededor de 2 años hace | 2 respuestas | 0

2

respuestas

Pregunta


How to use full axes area when zooming image in App GUI
I plot an image using imshow in an axis in my APP GUI. Then there can be zoomed in to see details. Now when you zoom in, only t...

alrededor de 2 años hace | 0 respuestas | 1

0

respuestas

Pregunta


How to keep roi points visible when replotting
I have a GUI where I plot an image using imshow. There are 2 color versions of this image. By clicking on the image, the user c...

alrededor de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


What is the difference between
When packaging an app in App Designer, I always get three output folders: The appplication found in for_redistribution must b...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Categorical Bar Plot keeps old categories
I make a bar plot with categorical x-values as follows: define legend names (that will be the labels for each bar in the bar gr...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Respondida
App Designer Edit Field precision
When you select the field, you can edit the ValueDisplayFormat code. Now it is apparently in some kind of scientific notation mo...

más de 2 años hace | 1

Pregunta


How to vectorize nested for loops
I am making a matrix B that represents a halve sphere in grayscale values. This means grayscale ~ height (so 0 = black = bottom ...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Respondida
How to find percentage of white pixels in a binary image?
Hi You could simply use nnz(A), which gives the number of non-zero elements in the matrix A, and numel(A), which gives the to...

casi 3 años hace | 0

| aceptada

Respondida
Converting coordinates (x,y) and radius (r) from pixels to mm using a calibrated camera intrinsic and extrinsic parameters
You can obtain the dpi of your image from the imfinfo structure dpi = imfinfo(filepath).XResolution %analogous for YResolution ...

alrededor de 3 años hace | 0

Respondida
How to create a line from a curve in a log scale x-axis
If your question is how to plot a log scale, please use set(gca, 'XScale', 'log') %make X axis logarithmic

alrededor de 3 años hace | 0

Respondida
I want to store text data on edit field when I press button on app designer Matlab
For your first question, create a Callback function for that button. I assume you have somewhere an input field where the desire...

alrededor de 3 años hace | 1

| aceptada

Respondida
Prime number sum from cell array
There are a few issues. I wouldn't change characters to NaN but rather to an empty cell. After your cellfun and filter1, myArr...

alrededor de 3 años hace | 1

| aceptada

Respondida
how to take the derivative of the function saved from curve fitting tool
If you have the values of your fitted curve saved, you can calculate the first derivative by using the gradient function: https:...

alrededor de 3 años hace | 0

Respondida
how to sort object properties at workspace window?
Just type app.property, e.g. app.Button3 to see that value.

alrededor de 3 años hace | 0

Respondida
How I can perform a canny edge detection on this image ? It can be used for hand gesture recognition in real time or is just for images
Please refer to https://nl.mathworks.com/help/images/edge-detection.html for loading an image & running an edge detection algori...

alrededor de 3 años hace | 0

| aceptada

Respondida
ERROR SELECTING MULTIPLE FILES
The moment you select multiple files, file becomes a cell array. Just run this in your command window and select a few files to...

alrededor de 3 años hace | 0

| aceptada

Respondida
Creating a colormap for an image
You will probably want to use something like a jet colormap. See this page for more details: https://nl.mathworks.com/help/matla...

alrededor de 3 años hace | 0

| aceptada

Respondida
How to make the last iteration of a for loop run differently?
You can do something like this for i = 1:number % do the things that have to happen for each iteration if i < thelast...

alrededor de 3 años hace | 1

| aceptada

Respondida
Best practise for quickly changing parameters of a function?
For each number you want to change regularly, make it also an input parameter to your function. Then, you can write a little sc...

alrededor de 3 años hace | 0

Respondida
How can I plot this small set as a beautiful histogram?
You are not making a histogram if you want to have the height of the bars equal to the value. You are making a bar graph. This s...

alrededor de 3 años hace | 0

Pregunta


Color transformation from LAB to CMYK
I have an .icc profile that containts the data to transform from LAB to CMYK. profile.Header struct with fields: ...

alrededor de 3 años hace | 0 respuestas | 0

0

respuestas

Pregunta


uigetfile doesn't show in standalone app
I have designed an app in AppDesigner that publishes a script. In that script, uigetfile is used to load the necessary data. Wh...

alrededor de 3 años hace | 1 respuesta | 1

1

respuesta

Pregunta


For loop: access values in between steps
Hi I have a for-loop where first only certain rows of a matrix are dealt with: for i = 1:3:100 %3 is an example step size, t...

más de 3 años hace | 1 respuesta | 0

1

respuesta

Cargar más