Filter löschen
Filter löschen

set the unit step function

2 Ansichten (letzte 30 Tage)
Tu Nguyen
Tu Nguyen am 2 Mär. 2022
Beantwortet: David Hill am 2 Mär. 2022
Dear all, how can I set the function like this: x[n] = [1 2 3 4 5 6] with correlation n = [0 1 2 3 4 5]?
Thank you so much for your help

Antworten (1)

David Hill
David Hill am 2 Mär. 2022
Not sure what you are after. I assumed step function at n positions with applitudes 1:6
z=1:6;
n=0:5;
x=-1:.1:10;
scatter(x,d(x,z,n))
function y=d(x,z,n)
y=zeros(size(x));
for k=1:length(n)
y(ismember(x,n(k)))=z(k);
end
end

Kategorien

Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by