how can i sample this code
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
how can i sample this code at fs=10000
my code
n = 0:35; a = 1.2; K =0.0017;
x = K*a.^n;
stem(n,x);
xlabel('Time index n');ylabel('Amplitude');
2 Kommentare
Rik
am 2 Nov. 2018
Have a read here (or here for more general advice) and here. It will greatly improve your chances of getting an answer.
Dimitris Kalogiros
am 2 Nov. 2018
I assume you want to create an exponential signal and sample it at fs=10KHz. What is the analytical (mathematical) formula of your signal? Is it x(t)=K*(a^t) ?
Antworten (1)
Dimitris Kalogiros
am 2 Nov. 2018
clear all; clc; close all;
a = 1.2; K =0.0017;
Fs = 10E3; % sampling frequency 10KHz
Ts = 1/Fs; % sampling period
tsamples = Ts*(0:35); % sampling instants
x = K*a.^tsamples;
%plot versus sample number
figure;
stem(x);
xlabel('index n');ylabel('Amplitude');
%plot versus time
figure;
stem(tsamples, x);
xlabel('time (sec)'); ylabel('Amplitude');
2 Kommentare
Rik
am 2 Nov. 2018
You should avoid clear all, especially outside of debugging. It is better to use clearvars.
Uma sri Vidyadhari
am 5 Aug. 2020
May be just use
clear
instead of
clear all
Siehe auch
Kategorien
Mehr zu Filter Analysis finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!