photo

Diego Caro


IUCRC BRAIN Center, Tecnológico de Monterrey

Last seen: Today 自 2024 起处于活动状态

Followers: 0   Following: 1

消息

IMD 2021

Programming Languages:
Python, MATLAB, Arduino
Spoken Languages:
English, Spanish
Professional Interests:
Signal Processing, Biomedical Imaging, Biomedical Signal Processing

统计学

All
MATLAB Answers

0 个提问
14 个回答

File Exchange

2 文件

Cody

0 个问题
1 个答案

排名
2,869
of 300,365

声誉
20

贡献数
0 个提问
14 个回答

回答接受率
0.00%

收到投票数
2

排名
17,988 of 20,933

声誉
2

平均
0.00

贡献数
2 文件

下载次数
6

ALL TIME 下载次数
16

排名
131,697
of 168,262

贡献数
0 个问题
1 个答案

评分
20

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Submission
  • 3 Month Streak
  • Knowledgeable Level 2
  • MATLAB Central Treasure Hunt Finisher
  • Solver
  • First Answer

查看徽章

Feeds

排序方式:

已提交


dcaro_stacked
Creates a stacked plot of any signal. Similar to what eegplot does but in a fancier way.

10 hours 前 | 5 次下载 |

0.0 / 5
Thumbnail

已提交


dcaro_WAAF
Wavelet-Assisted Adaptative Filter to remove Ocular Artifacts from EEG signals. Computationally efficient for Real-Time applicat...

5 days 前 | 1 次下载 |

0.0 / 5
Thumbnail

已回答
how to design digital filter
Use designfilt.

7 months 前 | 0

已回答
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/...

8 months 前 | 1

已回答
Unzip to a cell array, get the csv filles
Use readmatrix for each cell. Use a for loop.

8 months 前 | 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...

8 months 前 | 0

已回答
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...

8 months 前 | 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 ...

1 year 前 | 0

已回答
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....

1 year 前 | 0

| 已接受

已回答
how to remove warning during code generation
Add this line at the start of your code: warning('off','all')

1 year 前 | 0

| 已接受

已回答
how to select simulink block through keyboard
Press M, then use the arrow keys to move across blocks.

1 year 前 | 0

已回答
HELPPP -Command Window broken after resetting
Use Ctrl+C to reset the command window.

1 year 前 | 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 ...

1 year 前 | 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...

1 year 前 | 0

已解决


Pizza!
Given a circular pizza with radius z and thickness a, return the pizza's volume. [ z is first input argument.] Non-scored bonus...

1 year 前

已回答
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...

1 year 前 | 1

| 已接受