Equivalent of matlab zeros function in python

What is the equivalent of zeros function in python to translate below code block
Shifts = zeros(length(Filters)-1,1,'int16');
thanks in advance

1 Comment

is it something similar to this
Shifts = np.zeros(len(Fliter)-1,1,dtype = int16)

Sign in to comment.

Answers (0)

Asked:

Prb
on 1 May 2019

Commented:

Prb
on 1 May 2019

Community Treasure Hunt

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

Start Hunting!