MCPcopy Create free account
hub / github.com/OpenFOAM/OpenFOAM-dev / operator*

Function operator*

src/OpenFOAM/primitives/complex/complexI.H:262–269  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

260
261
262inline complex operator*(const complex& c1, const complex& c2)
263{
264 return complex
265 (
266 c1.re*c2.re - c1.im*c2.im,
267 c1.im*c2.re + c1.re*c2.im
268 );
269}
270
271
272inline complex operator/(const complex& c1, const complex& c2)

Callers

nothing calls this directly

Calls 1

complexClass · 0.85

Tested by

no test coverage detected