![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/7147967_1523609527570_DEF.jpg)
Jonas
Followers: 0 Following: 0
C++, Java, MATLAB
Spoken Languages:
English, French, German
Statistica
RANK
152
of 297.010
REPUTAZIONE
746
CONTRIBUTI
27 Domande
310 Risposte
ACCETTAZIONE DELLE RISPOSTE
62.96%
VOTI RICEVUTI
95
RANK
14.518 of 20.418
REPUTAZIONE
14
VALUTAZIONE MEDIA
2.50
CONTRIBUTI
5 File
DOWNLOAD
7
ALL TIME DOWNLOAD
100
RANK
of 157.687
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
drawrectangle not working consistently, help!
is this still an issue? I remember having also problems with that, but at the moment, I cannot replicate the problem in 2022a f...
5 mesi fa | 0
Domanda
Why is exportgraphics not fully supported in Matlab for Desktop?
I saw that the exportgraphics function can now handle inputs concerning width and height. Unfortunately, this is only the case f...
5 mesi fa | 1 risposta | 0
1
rispostaI am getting wrong results for the Continuous wavelet transform (CWT) on converting the frequency axis (Y Axis) from log scale to linear scale for the same frequency limits.
you could interpolate the image pixels, but this makes the upper frequency values barely visible fs = 10000; % Sampling freque...
5 mesi fa | 0
How can I do a linebreak in the categories?
yes you could "hack" it using a tabular in latex. just use "\\" as line break, like you know it from the line endings from the t...
5 mesi fa | 1
| accettato
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...
8 mesi fa | 1
Domanda
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 ...
8 mesi fa | 1 risposta | 0
1
rispostaDomanda
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 ...
9 mesi fa | 1 risposta | 0
1
rispostaInviato
copyFromTilesToTiles
copies from one tiledlayout to another tiledlayout
9 mesi fa | 1 download |
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....
11 mesi fa | 1
| accettato
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...
11 mesi fa | 0
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...
11 mesi fa | 0
| accettato
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...
11 mesi fa | 0
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...
11 mesi fa | 0
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...
12 mesi fa | 2
| accettato
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));...
12 mesi fa | 0
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;...
12 mesi fa | 0
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...
12 mesi fa | 1
| accettato
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]; ...
12 mesi fa | 0
Domanda
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...
12 mesi fa | 1 risposta | 0
1
rispostaProblems 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...
circa un anno fa | 0
| accettato
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...
circa un anno fa | 0
Domanda
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...
circa un anno fa | 2 risposte | 0
2
risposteHow 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...
circa un anno fa | 0
| accettato
Domanda
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...
oltre un anno fa | 0 risposte | 0
0
risposteDomanda
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...
oltre un anno fa | 1 risposta | 0
1
rispostaPeriod 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...
quasi 2 anni fa | 1
Domanda
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 ...
quasi 2 anni fa | 0 risposte | 0
0
rispostehow 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" ...
quasi 2 anni fa | 2
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...
quasi 2 anni fa | 0
| accettato
Inviato
partially logarithmic plots
This function allows to plot with x or y axis divided into a logarithmic and linear part.
quasi 2 anni fa | 1 download |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/6f4c8958-dffe-4ed2-a115-484d53341ab1/9d74ea55-b8cf-4095-bd27-d79b5114eac8/images/1656572951.png)