Community Profile

photo

Chien Poon


Last seen: 2 years 前 自 2021 起处于活动状态

Followers: 0   Following: 0

统计数据

  • Knowledgeable Level 1
  • First Answer

查看徽章

Feeds

排序方式:

已回答
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...

2 years 前 | 0

已回答
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; ...

2 years 前 | 0

| 已接受

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

2 years 前 | 0