Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
b-vanstraaten committed Jul 25, 2024
1 parent 72d11c7 commit cda0485
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ dependencies = [
'tqdm>=4.62',
'plotly>=5.22',
'dash>=2.17',

]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion qarray/DotArrays/ChargeSensedDotArray.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def __post_init__(self):
check_and_warn_user(self)

self.gate_voltage_composer = GateVoltageComposer(n_gate=self.n_gate, n_dot=self.n_dot, n_sensor=self.n_sensor)
self.gate_voltage_composer.virtual_gate_matrix = -np.linalg.pinv(self.cdd_inv @ self.cgd)
self.gate_voltage_composer.virtual_gate_matrix = -np.linalg.pinv(self.cdd_inv_full @ self.cgd_full)
self.gate_voltage_composer.virtual_gate_origin = np.zeros(self.n_gate)

def do1d_open(self, gate: int | str, min: float, max: float, points: int) -> np.ndarray:
Expand Down

0 comments on commit cda0485

Please sign in to comment.