Plot Impedance Diagram from values
조회 수: 8 (최근 30일)
이전 댓글 표시
I have a set of 50 Hz Voltage and Current values stored as arrays under variable name 'Volt' and 'Cur' sampled at 1000 Hz. How can I plot the impedance diagram (R+jX) from these? Thanks
댓글 수: 0
답변 (1개)
Ashutosh Prasad
2018년 9월 14일
From what I understand is that you have complex valued Voltages(Volt) and Currents(Cur). To get the impedance value for a particular value of voltage and current, the following relations will hold.
R = real(Volt/Cur);
X = imag(Volt/Cur);
Now to get the impedance diagram you just need to plot the data obtained above in appropriate axes.
Let me know if this is what you intend to do.
참고 항목
카테고리
Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!