photo

Jonas


Last seen: 27 días hace Con actividad desde 2020

Followers: 0   Following: 0

Programming Languages:
C++, Java, MATLAB
Spoken Languages:
English, French, German

Estadística

All
  • 12 Month Streak
  • Knowledgeable Level 5
  • Pro
  • Thankful Level 3
  • Revival Level 2
  • First Answer
  • First Submission

Ver insignias

Feeds

Ver por

Respondida
Extracting data from struct as matrix
as you already said, you canot concatenate the data as matrix, since it has different size. you could use a cell array, but this...

alrededor de 1 mes hace | 1

Pregunta


How to create a suitable statistical test for my repeated measures problem with unequal sample sizes?
dear community, i have the following problem: I want to test differences of specific repeated measures during a pre and a post ...

alrededor de 1 mes hace | 1 respuesta | 0

1

respuesta

Pregunta


Why does the tiledlayout keep the whitespace between tiles although TileSpacing is 'tight'
dear community, i have a tiledlayout with TileSpacing set to 'tight', but the upper row keeps space below it, altough there is ...

2 meses hace | 1 respuesta | 0

1

respuesta

Enviada


copyFromTilesToTiles
copies from one tiledlayout to another tiledlayout

2 meses hace | 1 descarga |

Respondida
How to plot this in MATLAB?
this could work theta = linspace (-pi/4,pi/4); x = 0.5*cos(theta).*sqrt(2.*cos(2.*theta)); y = 0.5*sin(theta).*sqrt(2.*cos(2....

4 meses hace | 1

| aceptada

Respondida
How do I count the number of times my graph crosses two separate lines?
maybe too caomplicated, but this can work: data=[1:10 9:-1:1 2:10 9:-1:1 2:10]; % row vector to not get problems with num2str...

4 meses hace | 0

Respondida
Running excel VBA script via Matlab yields different chart position
this seemed to be an issue maybe related to the graphics card(s) or the excel application itself. The workaround for me was to s...

4 meses hace | 0

| aceptada

Respondida
How to calculate the angle between two 3D vectors?
look here: https://de.mathworks.com/matlabcentral/answers/328240-calculate-the-3d-angle-between-two-vectors P1=[78,47,88]-[128...

4 meses hace | 0

Respondida
Reference to non-existent field 'folder'.
if there are no .nc files in the current directory, then files = dir('*.nc'); will be empty, and as consequence files(k) wi...

4 meses hace | 0

Respondida
How to have smithPlot with outer area with white colour?
weird function. i never used it before. but setting the Figure color before plotting with the smithplot seems to use the backgro...

5 meses hace | 2

| aceptada

Respondida
How to get a set aspect ratio of 4:3 on a figure?
you could use pbaspect on each subplot figure; ax1=subplot(2,1,1); plot(rand(10,1)); ax2=subplot(2,1,2); plot(rand(100,1));...

5 meses hace | 0

Respondida
How to normalize a signal for each half cycle?
you could normalize by using a moving max window with size a bit bigger than half of one cycle: f=10; fs=100; t=0:1/fs:2;...

5 meses hace | 0

Respondida
How do I make it so my Plot keeps the same colours
for me this looks like an error that has nothing to do with the disableDefaultInteraction using % plot(app.LiveAxes, app.T...

5 meses hace | 1

| aceptada

Respondida
Minimale en maximale data uit de matrix filteren
what about something like that: mat=[7 8 9 10 11 12 13; 1 2 4 5 8 2 12; 3 6 10 15 1 6 8]; colsToEdit=[1 3 7]; ...

5 meses hace | 0

Pregunta


Running excel VBA script via Matlab yields different chart position
dear community, I am trying to run a VBA script in excel using Matlab. Running in Excel, the created chart is positioned 2 colu...

5 meses hace | 1 respuesta | 0

1

respuesta

Respondida
Problems in recognising text with OCR from clear logical array
i guess it is just a mishandling of the automatic mode recognition: I=imread('testOCR.png'); I=rgb2gray(I); imshow(I); c=ocr...

6 meses hace | 0

| aceptada

Respondida
paralelise nested for loop with skipped indexes
Yes, there is a more efficient way to do this by utilizing a combination of vectorized operations and sparse matrix creation tec...

6 meses hace | 0

Pregunta


Do I have to correct correlation values for two series originating from overlapped analysis?
Dear community, I want to have a look into the correlation of two parameters. Since those parameters originate from an overlapp...

6 meses hace | 2 respuestas | 0

2

respuestas

Respondida
How to access App version number from inside the App
hi Steven, do you have powershell available (are you on windows)? then have a try with the attached m file and the prj file fo...

8 meses hace | 0

| aceptada

Pregunta


how to use ranova with repeated repeated measurements
dear community, I have an experiment where 12 subjects were measured during 2 tasks and during each task, a certain value was m...

alrededor de 1 año hace | 0 respuestas | 0

0

respuestas

Pregunta


uicontrol does not allow 'remove' as String during component creation
Dear community, are there reserved keywords for the text-style uicontrol? I could not find a list for that but I noticed that I...

alrededor de 1 año hace | 1 respuesta | 0

1

respuesta

Respondida
Period Length of the random numbers generated by rand() and randn()
don't confuse yourself, random number do not have a period length, but what you actually mean may be the rate e.g. after which a...

alrededor de 1 año hace | 1

Pregunta


Plot position in uiaxes not precise?
Dear community, - Edit below - I tried to plot a cross on an image placed into a uiaxes in a uifigure and i noticed, that the ...

alrededor de 1 año hace | 0 respuestas | 0

0

respuestas

Respondida
how to: multiple choises in if-function
looks good, but you could increase readability e.g. by using the ismember function alphabet = ["A" "B" "C" "D" "E" "F" "G" "H" ...

más de 1 año hace | 2

Respondida
How to make a Subplots using set(gca,'position') command?
you could create the axes by yourself and set the positioning as you did figure('Color',[0.9 0.9 0.9]); % create figure and use...

más de 1 año hace | 0

| aceptada

Enviada


partially logarithmic plots
This function allows to plot with x or y axis divided into a logarithmic and linear part.

más de 1 año hace | 2 descargas |

Thumbnail

Enviada


Data Live Acquisition Live Multi Channel
Mainly see reference to original work. Contains app designer files, exported m files and an .exe of the app

más de 1 año hace | 2 descargas |

Respondida
automatic refresh webread data
create a timer object, use a method for repeated execution and add the callback EDIT: e.g. function doStuff() intervalInS=...

más de 1 año hace | 0

Respondida
ListBox MultiSelect simulate always with Ctrl modifier?
I tried to circumvent the ctrl modofier in such a way, that I look into the event's previous value and delete/save as necessary....

más de 1 año hace | 0

| aceptada

Pregunta


ListBox MultiSelect simulate always with Ctrl modifier?
dear community, can someone check the ListBox MultiSelect Example from the documentation for me? It does not work for me, I can...

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

1

respuesta

Cargar más