In electrical network analysis, transforming a delta (Delta) configuration of components into a wye (Y) configuration is vital for simplifying complex circuits. Given three impedances connected in delta (Za, Zb, Zc), the equivalent wye impedances (Z1, Z2, Z3) are calculated using the following vectorized formulas:
Z1 = (Zb * Zc) / (Za + Zb + Zc)
Z2 = (Za * Zc) / (Za + Zb + Zc)
Z3 = (Za * Zb) / (Za + Zb + Zc)
Write a MATLAB function that accepts three vectors or matrices representing Za, Zb, and Zc (which may include complex numbers for AC circuits) and returns the equivalent wye impedances.

Solution Stats

3 Solutions

3 Solvers

Last Solution submitted on Jun 14, 2026

Last 200 Solutions

Solution Comments

Show comments
Loading...

Problem Recent Solvers3

Suggested Problems

More from this Author18

Problem Tags

Community Treasure Hunt

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

Start Hunting!