photo

Diego Caro


Last seen: 3 días hace Con actividad desde 2024

Followers: 0   Following: 1

IMD 2021

Programming Languages:
MATLAB, Arduino
Spoken Languages:
English, Spanish

Estadística

All
MATLAB Answers

0 Preguntas
14 Respuestas

File Exchange

1 Archivo

Cody

0 Problemas
1 Solución

CLASIFICACIÓN
2.852
of 299.192

REPUTACIÓN
20

CONTRIBUCIONES
0 Preguntas
14 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
2

CLASIFICACIÓN
18.519 of 20.655

REPUTACIÓN
1

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
1 Archivo

DESCARGAS
2

ALL TIME DESCARGAS
10

CLASIFICACIÓN
128.934
of 163.661

CONTRIBUCIONES
0 Problemas
1 Solución

PUNTUACIÓN
20

NÚMERO DE INSIGNIAS
1

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

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

Ver insignias

Feeds

Ver por

Respondida
how to design digital filter
Use designfilt.

3 meses hace | 0

Respondida
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/...

4 meses hace | 1

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

4 meses hace | 0

Respondida
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...

4 meses hace | 0

Enviada


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

4 meses hace | 2 descargas |

0.0 / 5
Thumbnail

Respondida
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...

4 meses hace | 0

Respondida
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 ...

12 meses hace | 0

Respondida
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....

alrededor de 1 año hace | 0

| aceptada

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

alrededor de 1 año hace | 0

| aceptada

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

alrededor de 1 año hace | 0

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

alrededor de 1 año hace | 0

Respondida
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 ...

alrededor de 1 año hace | 0

Respondida
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...

alrededor de 1 año hace | 0

Resuelto


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

alrededor de 1 año hace

Respondida
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...

alrededor de 1 año hace | 1

| aceptada