
MATLAB, Arduino
Spoken Languages:
English, Spanish
Statistics
RANK
2,831
of 298,247
REPUTATION
20
CONTRIBUTIONS
0 Questions
14 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
2
RANK
18,741 of 20,553
REPUTATION
1
AVERAGE RATING
0.00
CONTRIBUTIONS
1 File
DOWNLOADS
6
ALL TIME DOWNLOADS
7
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
unable to rotate the plot
Are you sure you're plotting the right thing? Look at this other example using your code. y = 0:0.1:10; x = y; theta = pi/...
1 month ago | 1
Unzip to a cell array, get the csv filles
Use readmatrix for each cell. Use a for loop.
1 month ago | 0
How can I create multiple function handles in a for loop?
Store your function handles in a cell array. my_mat = 1:10; my_handles = cell(size(my_mat)); for t = 1:length(my_mat) m...
1 month ago | 0
Submitted
dcaro_stacked
Creates a stacked plot of any signal. Similar to what eegplot does but in a fancier way.
1 month ago | 6 downloads |

EEG sequencies visualization ideas
Hi, if you're familiar with eeglab, I'd suggest you use my function: dcaro_stacked.m (I just published it, lol) It's just a fan...
1 month ago | 0
Can't load datasets in EEGLAB using script
Hi, Elise Your code seems to run fine for me after trying it with some of my datasets. I am using EEGLAB v2021.1. However, the ...
9 months ago | 0
Hi, I am applying findpeaks function to find the peaks of an oscilloscope signal but in the peak plot graph it is automatically changing the x-label with a large difference.
Use xlim.
10 months ago | 0
| accepted
ECG Segmentation and Classification using PQRST
Should I apply low-pass filters to all recordings to enhance signal quality? ECG frequencies fall in the range of 0.5 to 150 Hz....
10 months ago | 0
| accepted
how to remove warning during code generation
Add this line at the start of your code: warning('off','all')
10 months ago | 0
| accepted
how to select simulink block through keyboard
Press M, then use the arrow keys to move across blocks.
10 months ago | 0
HELPPP -Command Window broken after resetting
Use Ctrl+C to reset the command window.
10 months ago | 0
Processing and identifying noises in EEG signal
If allowed by your instructors, you could use the EEGLAB toolbox, which is an environment bulit to analyze EEG signals. The GUI ...
10 months ago | 0
Savitzky-Golay filtering on emg signal
What works best for me is just filtering the EMG signal with a lowpass butterworth filter with a very low cutoff frequency. For...
10 months ago | 0
Solved
Pizza!
Given a circular pizza with radius z and thickness a, return the pizza's volume. [ z is first input argument.] Non-scored bonus...
11 months ago
obtaining heart rate from ECG signal
If you only want to estimate the heart rate, my suggestion is that you take the derivative of the ecg signal, so that R peaks in...
11 months ago | 1
| accepted