Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

i'm getting vertcat and horizon error in a=[z A z] ..i dont know why?? pls tell me how to resolve

2 visualizaciones (últimos 30 días)
function [ecg_h,temp]=R_detect1(data)
fs=200;
gr=1;
% x=data(:,1);
y=data;
[r c]=size(y);
temp=[];
A=y;
z=zeros(100,1);
zc=A(1);
A=[z A z];
s = A;

Respuestas (1)

Cedric
Cedric el 10 de Oct. de 2017
I'm not sure what you want to achieve with this, but I'd say that
z=zeros(size(A,1),1);
would at least make dimensions match.
  2 comentarios
Cedric
Cedric el 10 de Oct. de 2017
My impression is that you are trying to use a function that you don't understand, and you are passing the wrong input(s).
We cannot spend all the time that it would require to adapt it so it is able to process your input. I'd suggest that you try to understand exactly for what type of inputs it was designed.
Image Analyst
Image Analyst el 12 de Oct. de 2017
That's asking us a bit much to learn/analyse all that code, especially when you didn't even provide the data, which pretty much prevents us from running the code.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by