Need help with creating a half/full bridge rectifier output
5 ビュー (過去 30 日間)
古いコメントを表示
The code is as follows,
clc
clear all
i=1;
for t=0:1e-3:0.2
x(i)=t;
y(i)=10*sin(2*pi*100*x(i));
i=i+1;
end
plot(x,y)
I am tasked with adding an if/else statment on the inside of the for loop to create a half and full bridge rectified signal.
Can anyone help me please?
0 件のコメント
回答 (1 件)
Kiran Felix Robert
2021 年 2 月 8 日
Hi David,
Refer to this answer thread for half-wave rectifier scripts and an example.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Specialized Power Systems についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!