how to plot output voltage graph of 6-pulse rectifier?

조회 수: 2 (최근 30일)
Subarna Giri
Subarna Giri 2017년 9월 12일
답변: Rohan Kale 2017년 9월 14일
how to plot the above graph in matlab. The graph is for voltage waveform of 6-diodes, output voltage and current from 6-pulse rectifier. similarly, I have to plot output waveform for 12-Pulse rectifier. Please help me.
Regards, SG
  댓글 수: 1
Sarah Mohamed
Sarah Mohamed 2017년 9월 14일
Are you using Simulink, and if so, are you using a 'To Workspace' block so that the data is available in the MATLAB workspace?
Please share as much detail as possible about how the data you would like to plot has been created.

댓글을 달려면 로그인하십시오.

답변 (1개)

Rohan Kale
Rohan Kale 2017년 9월 14일
Simply use hold on command to hold the 6 plots on to the same figure. e.g
hold on
plot(y1);
plot(y2);
% and so on.

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by