1周期のみのAC電源はあるか
古いコメントを表示
1周期のみのAC Voltage sourceが必要なのですがありますか。
また作れる場合、どのように作れるか知りたいです。
採用された回答
その他の回答 (1 件)
Hernia Baby
2021 年 5 月 6 日
編集済み: Hernia Baby
2021 年 5 月 6 日
コードで作る場合はサンプリング周波数を決めて式に沿って作成すればできると思います。
以下サンプリング周波数10000Hzとして
振幅1、位相ずれなしのものです。
周波数は100Hzつまり1周期0.01secです。
close all,clear,clc;
Vm = 1;
theta = 0;
f = 100;
Fs = 10000;
t = 0:1/Fs:1/f;
V = Vm*sin(2*pi*f*t+theta);
figure
plot(t,V)

カテゴリ
ヘルプ センター および File Exchange で 電気センサー についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
