david753
Full Member level 1
- Joined
- Jan 9, 2005
- Messages
- 96
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,286
- Activity points
- 856
In matlab, there are two functions that can represent convolution function.
one is CONV, the other is FILTER.
But, their output point numbers are different.
As bellowing example, stp_rep2 is twice times length than stp_rep3.
Which one is more reasonable?
stp_rep1=filter(b,a,x_imp);
stp_rep2=conv(x_in,stp_rep1);
stp_rep3=filter(b,a,x_in);
one is CONV, the other is FILTER.
But, their output point numbers are different.
As bellowing example, stp_rep2 is twice times length than stp_rep3.
Which one is more reasonable?
stp_rep1=filter(b,a,x_imp);
stp_rep2=conv(x_in,stp_rep1);
stp_rep3=filter(b,a,x_in);