The Quantum Exact Simulation Toolkit v4.0.0
Loading...
Searching...
No Matches

Functions for obtaining fixed-size matrices. More...

Functions

static CompMatr1 getCompMatr1 (qcomp **in)
 
static CompMatr1 getCompMatr1 (qcomp in[2][2])
 
CompMatr1 getCompMatr1 (std::vector< std::vector< qcomp > > in)
 
static CompMatr2 getCompMatr2 (qcomp **in)
 
static CompMatr2 getCompMatr2 (qcomp in[4][4])
 
CompMatr2 getCompMatr2 (std::vector< std::vector< qcomp > > in)
 
static DiagMatr1 getDiagMatr1 (qcomp *in)
 
DiagMatr1 getDiagMatr1 (std::vector< qcomp > in)
 
static DiagMatr2 getDiagMatr2 (qcomp *in)
 
DiagMatr2 getDiagMatr2 (std::vector< qcomp > in)
 

Detailed Description

Functions for obtaining fixed-size matrices.

Function Documentation

◆ getCompMatr1() [1/3]

static CompMatr1 getCompMatr1 ( qcomp ** in)
inlinestatic
Note
Documentation for this function or struct is under construction!

Definition at line 304 of file matrices.h.

304 {
305 _validateNewNestedElemsPtrNotNull(in, 1, __func__);
306
307 CompMatr1 out = {
308 .numQubits = 1,
309 .numRows = 2,
310 .elems = {
311 {in[0][0], in[0][1]},
312 {in[1][0], in[1][1]}}
313 };
314 return out;
315}

Referenced by applyMultiStateControlledHadamard(), applyMultiStateControlledRotateAroundAxis(), TEST_CASE(), and TEST_CASE().

◆ getCompMatr1() [2/3]

static CompMatr1 getCompMatr1 ( qcomp in[2][2])
inlinestatic
Note
Documentation for this function or struct is under construction!

Definition at line 411 of file matrices.h.

411{ return _getCompMatr1FromArr(in); }

◆ getCompMatr1() [3/3]

CompMatr1 getCompMatr1 ( std::vector< std::vector< qcomp > > in)
Note
Documentation for this function or struct is under construction!
Remarks
This function is only available in C++.

◆ getCompMatr2() [1/3]

static CompMatr2 getCompMatr2 ( qcomp ** in)
inlinestatic
Note
Documentation for this function or struct is under construction!

Definition at line 320 of file matrices.h.

320 {
321 _validateNewNestedElemsPtrNotNull(in, 2, __func__);
322
323 CompMatr2 out = {
324 .numQubits = 2,
325 .numRows = 4,
326 .elems = {
327 {in[0][0], in[0][1], in[0][2], in[0][3]},
328 {in[1][0], in[1][1], in[1][2], in[1][3]},
329 {in[2][0], in[2][1], in[2][2], in[2][3]},
330 {in[3][0], in[3][1], in[3][2], in[3][3]}}
331 };
332 return out;
333}

Referenced by applyMultiStateControlledSqrtSwap().

◆ getCompMatr2() [2/3]

static CompMatr2 getCompMatr2 ( qcomp in[4][4])
inlinestatic
Note
Documentation for this function or struct is under construction!

Definition at line 416 of file matrices.h.

416{ return _getCompMatr2FromArr(in); }

◆ getCompMatr2() [3/3]

CompMatr2 getCompMatr2 ( std::vector< std::vector< qcomp > > in)
Note
Documentation for this function or struct is under construction!
Remarks
This function is only available in C++.

◆ getDiagMatr1() [1/2]

static DiagMatr1 getDiagMatr1 ( qcomp * in)
inlinestatic
Note
Documentation for this function or struct is under construction!

Definition at line 338 of file matrices.h.

338 {
339 _validateNewElemsPtrNotNull(in, __func__);
340
341 DiagMatr1 out = {
342 .numQubits = 1,
343 .numElems = 2,
344 .elems = {in[0], in[1]}
345 };
346 return out;
347}

Referenced by applyMultiQubitPhaseFlip(), applyMultiQubitPhaseShift(), applyMultiStateControlledPauliZ(), applyMultiStateControlledS(), and applyMultiStateControlledT().

◆ getDiagMatr1() [2/2]

DiagMatr1 getDiagMatr1 ( std::vector< qcomp > in)
Note
Documentation for this function or struct is under construction!
Remarks
This function is only available in C++.

◆ getDiagMatr2() [1/2]

static DiagMatr2 getDiagMatr2 ( qcomp * in)
inlinestatic
Note
Documentation for this function or struct is under construction!

Definition at line 352 of file matrices.h.

352 {
353 _validateNewElemsPtrNotNull(in, __func__);
354
355 DiagMatr2 out = {
356 .numQubits = 2,
357 .numElems = 4,
358 .elems = {in[0], in[1], in[2], in[3]}
359 };
360 return out;
361}

◆ getDiagMatr2() [2/2]

DiagMatr2 getDiagMatr2 ( std::vector< qcomp > in)
Note
Documentation for this function or struct is under construction!
Remarks
This function is only available in C++.