Community Profile

photo

Chien Poon


Last seen: mer än 2 år ago Active since 2021

Statistics

  • Knowledgeable Level 1
  • First Answer

View badges

Content Feed

View by

Answered
Intersection between two functions
All you need is the element wise division (adding ./) on variable f1a %input array x=linspace(0,1,1000); f1=@(x) 2.2/sqrt(2...

mer än 2 år ago | 0

Answered
I am getting an error "not enough input arguments" even though i have given command [a,b]=my_conv[[1 2 -1 4 3 -2] ,[-1 0 4 3 1] , 2, 2] for the function given below, HELP me
% [a,b]=my_conv([1 2 -1 4 3 -2] ,[-1 0 4 3 1], 2, 2) function [y,yz]=my_conv(x1,x2,z1,z2) %output zero yz=-(-z1+1-z2+1)+1; ...

mer än 2 år ago | 0

| accepted

Answered
How to add zeros to the end of a column vector
b(length(b)+1:length(a)) = 0;

mer än 2 år ago | 0