- refactored

This commit is contained in:
2022-06-30 13:32:40 +02:00
parent 77cd5261b1
commit 776932e5d1
144 changed files with 0 additions and 38 deletions
+11
View File
@@ -0,0 +1,11 @@
% ##################################################################################
% ## Loesung: Abtastung ##
% ## -------------------------------------------------------------------------- ##
% ## Benoetigte(s) m-File(s): lcsin.m ##
% ##################################################################################
[y,t]= lcsin(50, 1200, pi/4, 0, 7e-3, 8000); %Zeitdiskretes Sinussignal
figure; stem(t,y);grid;xlabel('Zeit [sek]');ylabel('Amplitude');title('s_k(kT_A)');
figure; stem(y); grid;xlabel('k'); ylabel('Amplitude');title('s(k)');
% ##### EOF #####