したがって、sine(w*time) と cosine(w*time) をプロットします。
w は角周波数です。
私が尋ねても、誰かの時間を無駄にしないことを願っています:
これは円に見えますか?
私はたくさんのことを調査しましたが、ほとんどの Web サイトはサインとコサインを並べてグラフ化し、比較を表示するだけです。
円のように見えるようにしましたが、これが正しいかどうか疑問に思っていました。
また、このプロットを何と呼ぶことができますか? 「円のプロット」というタイトルを付けただけです。しかし、私は授業のためにやっているので、それが十分に専門的であるかどうか疑問に思っています.
お時間とご回答ありがとうございます。大変感謝しています。
興味のある人のための私の MATLAB コード:
clear all; clc; % clear the Workspace and the Command Window
f = 2; w = 2*pi*f; % specify a frequency in Hz and convert to rad/sec
T = 0.01; % specify a time increment
time = 0 : T : 0.5; % specify a vector of time points
x = sin(w*time); % evaluate the sine function for each element of the vector time
y = cos(w*time);
plot(x,y)
axis equal
grid on
xlabel('sin(w*time)');ylabel('cos(w*time)');title('Plot of a Circle');
axis([-1.1 1.1 -1.1 1.1]);
print