qiskit.quantum_info.ScalarOp.dot¶
- ScalarOp.dot(other, qargs=None)¶
Return the right multiplied operator self * other.
- প্যারামিটার
other (Operator) -- an operator object.
qargs (list or None) -- Optional, a list of subsystem positions to apply other on. If None apply on all subsystems (default: None).
- রিটার্নস
The right matrix multiplied Operator.
- রিটার্ন টাইপ
নোট
The dot product can be obtained using the
@
binary operator. Hencea.dot(b)
is equivalent toa @ b
.