You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
% Squarewave.m - Octave Script
|
|
%
|
|
% Dieses Skript generiert die Bilder für die BJ-Keyer Dokumentation
|
|
%
|
|
% 2023-07-09 Tom, DL7BJ
|
|
pkg load signal
|
|
|
|
for i=1:10
|
|
t=linspace(0,3*pi)';
|
|
duty_cycle=sin(i); % Percentage
|
|
x = square(t,duty_cycle);
|
|
plot(t/pi,x);
|
|
hold on;
|
|
end
|
|
grid on; |