Info

此问题已关闭。 请重新打开它进行编辑或回答。

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

1 次查看(过去 30 天)
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;

回答(1 个)

Cedric
Cedric 2017-10-10
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 个评论
Cedric
Cedric 2017-10-10
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 2017-10-12
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