回答済み
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 ...

4年以上 前 | 0

回答済み
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...

4年以上 前 | 0

回答済み
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...

4年以上 前 | 1

| 採用済み

回答済み
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...

4年以上 前 | 2

| 採用済み

回答済み
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...

4年以上 前 | 0

回答済み
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...

4年以上 前 | 1

回答済み
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...

4年以上 前 | 1

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

4年以上 前 | 2

| 採用済み

回答済み
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...

4年以上 前 | 1

回答済み
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 ...

4年以上 前 | 4

| 採用済み

回答済み
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);

4年以上 前 | 1

| 採用済み

回答済み
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...

4年以上 前 | 2

| 採用済み

回答済み
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...

4年以上 前 | 2

| 採用済み

回答済み
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...

4年以上 前 | 1

回答済み
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'); ...

4年以上 前 | 1

| 採用済み

回答済み
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...

4年以上 前 | 1

| 採用済み

回答済み
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); ...

4年以上 前 | 1

| 採用済み

回答済み
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...

4年以上 前 | 0

回答済み
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...

4年以上 前 | 1

| 採用済み

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

4年以上 前 | 1

| 採用済み

回答済み
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 ...

4年以上 前 | 1

| 採用済み

回答済み
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...

4年以上 前 | 0

| 採用済み

回答済み
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...

4年以上 前 | 2

| 採用済み

回答済み
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...

4年以上 前 | 1

回答済み
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...

4年以上 前 | 2

回答済み
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...

4年以上 前 | 1

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

4年以上 前 | 1

回答済み
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...

4年以上 前 | 1

| 採用済み

回答済み
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...

4年以上 前 | 0

回答済み
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, ...

4年以上 前 | 2

| 採用済み

さらに読み込む