Beantwortet
I would like to find bursts among neuronal spikes.
There are several features that you may want to take into account depending on your data and on what you want to do. The simples...

mehr als ein Jahr vor | 0

| akzeptiert

Beantwortet
Why do I see a drop in the last datapoint (Nyquist frequency) of the spectra derived from pwelch?
It may be because it's the Nyquist frequency, rolloff/aliasing/edge artefacts should happen afterwards at higher freqs but in so...

mehr als ein Jahr vor | 0

| akzeptiert

Beantwortet
Reconstruction of a Signal from the Real Part of Its Discrete Fourier Transform for matlab
N = 14; %ns = 0:N; xn = 1/2*(randn(N, 1) +1i*randn(N,1)); %random complex signal x_n = [0+0i;xn;zeros([N,1])+0i]; % M or nume...

mehr als ein Jahr vor | 1

Beantwortet
I am getting the same processed image result from easch iteration of the loop.I want to get the respective processed image from each iteration of the loop.
COuld the problem (just a first glance) be here? myFiles = dir(fullfile(myDir,'*.png')); %gets all png files in struct for k ...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
Plotting surface tangent to surface plot
You should use a matrix, not a scalar or vector, as the error says. Z (and T) are vectors, probably an issue with how you defi...

fast 2 Jahre vor | 0

Beantwortet
How in the world am I supposed to install MATLAB on Linux Ubuntu 20.04?!
cd mounted/directory/with/matlab ./install But you probably already tried that. Add sudo first before the command maybe. You...

fast 2 Jahre vor | 0

Beantwortet
Indexing in complex cell arrays
To simplify, since you are working with cells that contain only single colums or rows (and not multiple like in a matrix), a{1} ...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
Extract data points from multiple plot in one figure on Matlab
Your figure axes have 3 graphic objects, the first is the green line and the last is the Observed and Simulation ones. In betwee...

fast 2 Jahre vor | 0

Beantwortet
plot running time complexity
Well, in this figure the functions behind the lines are just not the simple ones displayed. Otherwise for example all n^n and n^...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
Extract one pixel vertical stripes from multiple images and concatenate them in a new image in Matlab
folder = ''; % pwd or C:\Users\etc or /usr/local/ or fullfile or https// or whatever position = 10; % column of pixels in pixel...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
For over three dimensional data
How is my whole Uni requesting help like this? Surely there are some people who could help within already... Anyway, you should...

fast 2 Jahre vor | 0

Beantwortet
How can I remove double values in an array
"remove rows in C that has zero in the second column" so pretty much the array B but with the 2nd column values of A whenever th...

fast 2 Jahre vor | 0

Beantwortet
how can I modify my code so that whenever my Y axis reaches 2.5E-6 it get constant, means no more variation with x axis.
For a question about a value or a plot, the code you shared is needelessly complicated, you could make it easier for the people ...

fast 2 Jahre vor | 0

Beantwortet
How can I split the data in cells
countries = {'Finland','San Marino','Serbia','France','Germany','Spain','Ireland','Italy','United Kingdom','Bosnia and Herzego...

fast 2 Jahre vor | 0

Beantwortet
plotting 12 graphs in one figure
So instead of plottin 12 figures each with mo_av, mo_max and mo_min you want 3 with 12 subplots? Would subplot(1,12,x) do? that ...

fast 2 Jahre vor | 0

Beantwortet
Given vertex points of two 2D polygons plotted in 3D space (x,y,z) how to determine if they intersect?
Unfortunately intersect only works for 2D polyshape objects, whereas for 3D you can use alphaShape and then a numerical solution...

fast 2 Jahre vor | 1

| akzeptiert

Beantwortet
reading files of folders with specific name styles
Adapt, test, correct, or simplify following code: Dir_with_Att = 'C:\Users\etc\put_your_directory_path_here\maybe_use_fullfile_...

fast 2 Jahre vor | 0

Beantwortet
Drop data from datatime by condition
Now I see that this was already answered, but the y-values might need to equal zero *for* a specific duration (or more), if I ge...

fast 2 Jahre vor | 1

Beantwortet
How to determine muscle activation timing of an emg signal?
You can use Fieldtrip or something like below (code needs testing/cleaning) % emg = timeseries; % Fs = sampling fr...

fast 2 Jahre vor | 0

Beantwortet
Save .FIG in a specific folder
Use savefig to save a Matlab .fig savefig(FIGhandle, fullfile(destdirectory_FIG, 'name_of_FIG.fig')); You can also use saveas...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
Best path for IBKR with Matlab in 2022
When Trading Toolbox became Datafeed Toolbox in R2021a, Interactive Brokers toolbox "ibtws" (and some other stuff) was removed b...

etwa 2 Jahre vor | 0

Beantwortet
How to tick a categorical x-axis in errobar plot
Try reordercats Categoricals are sorted and have an associated order by default that you need to override. n = ["out of prepa...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
How to Plot Numbers on top of Bar graphs?
Something like this? Edit: ah, too slow. Though this very basic approach might work with earlier releases too. You could get()...

etwa 2 Jahre vor | 0

Beantwortet
Any function to get adjacency matrix of 2D M by N lattice?
https://stackoverflow.com/a/3283732

etwa 2 Jahre vor | 1