discrete time signal, i am not able to generate a function for the following question
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
clc;
clear all;
close all;
n= [1 7 5 6 4 5];
N1 = input('enter value for N1 :');
N2 = input('enter value for N2 :');
alpha = input('enter the value of alpha:');
figure(1)
x= alpha ^ (N1:n:N2);
stem(x)
xlabel('time')
ylabel('amplitude')
title('plot-1')
Risposte (1)
Paul Hoffrichter
il 27 Mag 2021
Try this to fix the error:
N1 = 0; N2 = 8; alpha = 0.8;
figure(1)
x= alpha .^ (N1:N2);
plot(x)
0 Commenti
Vedere anche
Categorie
Scopri di più su Numerical Integration and Differential Equations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!