Beantwortet
Matrix dimensions must agree Error
A is [8x8] and B is [8x1]. Do you mean to do the |mrdivide| operation, "/"? Or do you mean to do element-wise division "./"? If ...

mehr als 4 Jahre vor | 0

Beantwortet
When loading .mat files in a parfor, the first time is way slower than the second time.
So you're doing something like this? for k = 1:10 mydata = load('myfile.mat'); output = someFunction(mydata); end T...

mehr als 4 Jahre vor | 0

Beantwortet
How do I remove the brackets from the numeric values around the zeros, so that only the numeric values are left and I am able to use boolean logic to get a solution ( 1 or 0)?
Hmm, seems like this was an opportunity to apply what you learned yesterday regarding regexprep, if you're trying to remove/repl...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
how can I improve this code???!!!
You should try preallocating margin before the loop. You have only set the value to one element, of zero. Since it's not clear h...

mehr als 4 Jahre vor | 2

| akzeptiert

Beantwortet
Finding series/pattern in an array
If you have the signal processing toolbox you can do this pretty easily using the functions risetime and pulsewidth. You just ha...

mehr als 4 Jahre vor | 0

Beantwortet
Asking the error of 'Out of memory'
You are trying to allocate memory to a matrix for more memory than is available in your RAM. The solution completely depends upo...

mehr als 4 Jahre vor | 1

Beantwortet
how to plot quiver evenly along lines?
I just took a closer look and it is what I suspected. In your loop over NL1 you are only storing the outputs, D1 and D2, for the...

mehr als 4 Jahre vor | 1

Beantwortet
Linspace with varying increment
MATLAB provides functions that do basic things, like create linearly spaced vectors using the colon operator or linspace. It is ...

mehr als 4 Jahre vor | 2

| akzeptiert

Beantwortet
Problem of finding lag when using xcorr
Yes, running this gives a max lag at 0. That is indicating that y matches x the best in their current positions. Shifting y by a...

mehr als 4 Jahre vor | 1

Beantwortet
decrease calculation accuracy to speed up running time
The reason your algorithm is taking so much time is because of the line COPT(u+1,:)=[]; What happens when you delete an entry ...

mehr als 4 Jahre vor | 4

| akzeptiert

Beantwortet
RLC Circuit Equation Implementation-Runge Kutta
Instead of this derriv_value = L*y(3)+R*y(2)+(1/C)*y; Do you mean this? derriv_value = L*y(3)+R*y(2)+(1/C)*y(1);

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
Question about printing ode45 results
You have the vectors time, and u1d (etc) outside of the ode45 call. And you also have the output t from the ode45 call. So,you c...

mehr als 4 Jahre vor | 2

| akzeptiert

Beantwortet
Output of mscohere function
Yes, these are the coherence values between the two channels at the frequencies returned in F. You can manually set the frequenc...

mehr als 4 Jahre vor | 2

| akzeptiert

Beantwortet
Integration of Velocity data to Displacement
Use |cumtrapz| as in displacement = cumtrapz(velocity)/fs; % where fs is your sampling rate Then you can assess afterwar...

mehr als 4 Jahre vor | 1

Beantwortet
How to change ONLY Xtick direction (or Ytick direction)
You have to set the properties of the specific axis. figure plot(1:10) ax = gca; xax = ax.XAxis; % xax = get(ax,'XAxis'); ...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
lines are not continuous
It's not perfect, but it might be sufficient. That's up to you. Play with the different values for dipreset. You might want to s...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
remove outliers form timeseries
If timevector is the name of your datetime vector, then you can mask out the outliers using timevector_good = timevector(~TF); ...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
Creating a color map of green and blue
Perhaps one of these colormap functions by Chad Greene would be useful to you: https://www.mathworks.com/matlabcentral/fileexch...

mehr als 4 Jahre vor | 0

Beantwortet
How to remove the background noise from a signal?
Seems like you have determined what you want your threshold to be. You can set those values to zero (or whatever the mean of y...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
How can I remove the default transparency of graph edges?
set(P,'EdgeAlpha',1);

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
How can I find the width of the peaks when presented with a digital signal-like plot?
Use the pulsewidth function with the argument MidPercentReferenceLevel set to 0 or 1 (the lowest value). Here is an example: x ...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
using variables in a parfor loop
I think it's because you're using d as the source and the sink in your loop, and you're assigning to d in a way that can make pr...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
Is there a way to use different sets of input arguments for one function?
It just requires you to check the type of each input argument. I think it would be easier to use a struct (or even an object) wi...

mehr als 4 Jahre vor | 2

| akzeptiert

Beantwortet
EEG is a voltage signal in time domain (voltage amplitude vs time). how can we convert this EEG into amplitude vs frequency?
To convert from the time domain to the frequency domain, use the *fft* function. Though you might actually get more use out of t...

mehr als 4 Jahre vor | 1

Beantwortet
EEG data preprocessing in matlab and EEGLAB
It seems pretty clear what the differences are. F is using a different file format. Choose your favourite. S is an option whethe...

mehr als 4 Jahre vor | 2

Beantwortet
Signal Processing EEG ECG
One method would be to use a moving RMS calculation over a small time window. You should know what a reasonable rms value is (ba...

mehr als 4 Jahre vor | 1

Beantwortet
Bandpass Filtering EEG Data
Here's your problem tmp(tmp==0)=NaN; Don't do that.

mehr als 4 Jahre vor | 1

Beantwortet
How to Plot(Time, Voltage) so that transient is captured for different inputs
One possible idea is to use a multiple of the time constant for the circuit. For a parallel RLC circuit this is 2RC, and for ser...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
Smoothing a roughly sinusoidal signal
So are you saying you want to remove the frequency of the blue signal from the brown signal? Fairly easy, just use a notch/bands...

mehr als 4 Jahre vor | 0

Beantwortet
Signal similarity analysis after cross correlation
Wouldn't it work just to set the threshold higher? It depends on what you mean by matching. If you want the exact same signal, ...

mehr als 4 Jahre vor | 2

| akzeptiert

Mehr laden