how can i solve this problem give me a useful answer ASAP

 Accepted Answer

Here's a start:
n = -15:15;
x = zeros(size(n));
x(n>=0) = 0.75;
figure;
stem(n,x);
a = 0.15;
h = zeros(size(n));
h(...) = ...
figure;
stem(n,h);

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Asked:

on 22 Oct 2014

Edited:

on 22 Oct 2014

Community Treasure Hunt

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

Start Hunting!