how to vectorize this code?
Mostrar comentarios más antiguos
while b < (length(data))
ECG(i,:) = data(f:b);
f = f+477;
b=b+477;
i= i+1;
end
2 comentarios
Birdman
el 11 de En. de 2018
What do you try to do? Is this the entire code?
Parsa Paiman
el 11 de En. de 2018
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 11 de En. de 2018
Perhaps
ECG = reshape(data, 477, :).';
1 comentario
Parsa Paiman
el 11 de En. de 2018
Categorías
Más información sobre ECG / EKG en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!