photo

zero


Active since 2018

Followers: 0   Following: 0

Statistics

Feeds

View by

Question


how to delete this error??
>> n=0:9; >> x=[1 1 1 1 1 1 1 1 1 1]; >> y=flip(x); >> xe=0.5*(x+y); >> subplot(n,xe)

6 years ago | 1 answer | 0

1

answer

Question


how to delete this error?
function y = dd(x) % x is a vector % We create an output vector of only 0 (our default value) y = zeros(1, length...

6 years ago | 3 answers | 0

3

answers

Question


Error says "Subscript indices must either be real positive integers or logicals"
x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 9, 8, 7, 6, 5, 4, 3, 2, 1]; n = -9:9; x1 = 5*x(n-2) - 3*x(n+4) How to remove this err...

6 years ago | 1 answer | 0

1

answer