photo

Spectro


Faculty of Biomedical Engineering, CTU in Prague

Last seen: 3 meses hace Con actividad desde 2020

Followers: 0   Following: 0

Passionate student of biomedical engineering.

Programming Languages:
Python, C++, C, C#, R, MATLAB, SQL
Spoken Languages:
English
Professional Interests:
Statistics and Data Analysis, Biomedical Imaging, Biomedical Engineering, Biomechanics, Biomedical Signal Processing

Estadística

All
MATLAB Answers

2 Preguntas
8 Respuestas

File Exchange

2 Archivos

Cody

0 Problemas
356 Soluciones

CLASIFICACIÓN
2.936
of 300.369

REPUTACIÓN
20

CONTRIBUCIONES
2 Preguntas
8 Respuestas

ACEPTACIÓN DE RESPUESTAS
100.0%

VOTOS RECIBIDOS
2

CLASIFICACIÓN
7.545 of 20.936

REPUTACIÓN
129

EVALUACIÓN MEDIA
5.00

CONTRIBUCIONES
2 Archivos

DESCARGAS
4

ALL TIME DESCARGAS
1031

CLASIFICACIÓN
386
of 168.436

CONTRIBUCIONES
0 Problemas
356 Soluciones

PUNTUACIÓN
4.400

NÚMERO DE INSIGNIAS
14

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • MATLAB Central Treasure Hunt Finisher
  • Thankful Level 2
  • Knowledgeable Level 2
  • Cody Challenge Master
  • Draw Letters
  • GitHub Submissions Level 2
  • Personal Best Downloads Level 2
  • 5-Star Galaxy Level 1
  • First Submission
  • Promoter
  • Community Group Solver
  • Introduction to MATLAB Master

Ver insignias

Feeds

Ver por

Respondida
Unable to Understand error: left and right side elements do not match
I think you should replace in the O_Hydrogen function this: j=japp; with this: j=japp(1);

más de 3 años hace | 1

Respondida
Convert epoch to human readable data and time
Have a look at datetime() using parameter "ConvertFrom": epochs = [1638351674 1638351674]; datetime(epochs, 'ConvertFrom', 'ep...

casi 4 años hace | 0

| aceptada

Respondida
how to display an image
What about using just tiledlayout? See the attachment (code below). M = ones(400, 200); tiledlayout(1, 6, 'TileSpacing', '...

casi 4 años hace | 0

Respondida
how can i play sounds in specific order with specific durations
Use a forcycle to run through all the notes with the appropriate durations using audioread. Also adjust each sound vector in dep...

casi 4 años hace | 0

Pregunta


How to handle ECG muscle noise artifacts correctly ?
I'm trying to process ECG recordings taken by Holter (bipolar chest leads) during simulations in virtual reality. Therefore, peo...

más de 4 años hace | 1 respuesta | 0

1

respuesta

Respondida
Format a large number into small decimal number
Lookup matlab built-in functions like simplify() or vpa(). This should do the work: vpa(r, 4)

alrededor de 5 años hace | 0

| aceptada

Respondida
Generate PDF image with 76cm x 240cm
All you have to do is put this at the end of your code: set(gcf, 'units', 'centimeters', 'PaperPosition', [0 0 240 76]) saveas...

alrededor de 5 años hace | 0

| aceptada

Pregunta


How to design a filter that removes multiple types of noise?
Hi there, I recently came across an ecg signal that I can't handle at all. My main goal is to get only R peaks from it so that ...

más de 5 años hace | 1 respuesta | 0

1

respuesta

Respondida
Insert this equation into a code
It should be like this. numerator = a*b; denominator = pow2(b*cos(cos(t))) + pow2(a*cos(cos(t))); r = (numerator/sqrt(denomi...

más de 5 años hace | 1

Respondida
How to apply a filter to an image?
First you need to declare and read your picture: img = imread('your_picture.bmp'); If you have already created matrices accord...

más de 5 años hace | 0

| aceptada