-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathusers.html
1885 lines (1509 loc) · 114 KB
/
users.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: QuTiP Users
---
{% include header.html %}
{% include navbar.html %}
<div class="row" style="margin-bottom:10px">
<div class="col-md-12">
<h2>Papers Using QuTiP</h2>
<h4>Found QuTiP useful for your own work? Please consider helping out by donating an example notebook highlighting how QuTiP was used in your publication.
</h4>
</div>
</div>
<div class="row hidden-sm hidden-xs" style="margin-bottom:10px">
<div class="col-md-6"><h3>Paper</h3></div>
<div class="col-md-4"><h3>Journal</h3></div>
<div class="col-md-2"><h3>Notebook</h3></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">371. <b>Fischer</b> et al., "Scattering into one-dimensional waveguides from a coherently-driven quantum-optical system", </div>
<div class="col-md-4"><a href="https://quantum-journal.org/papers/q-2018-05-28-69/">Quantum 2, 69 (2018).</a></div>
<div class="col-md-2"><a href="https://github.com/qutip/qutip-notebooks/blob/master/examples/temporal-photon-scattering.ipynb">Notebook</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">370. <b>Fischer</b> et al., "Particle emission from open quantum systems", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1803.04648">arXiv:1803.04648</a></div>
<div class="col-md-2"><a href="https://github.com/qutip/qutip-notebooks/blob/master/examples/photon-emission.ipynb">Notebook</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">369. <b>Sonar</b> et al., "Squeezing Enhances Quantum Synchronization", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1801.10383">arXiv:1801.10383</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">368. <b>Bergfield</b> et al., "Signatures of Plexitonic States in Molecular Electroluminescence", </div>
<div class="col-md-4"><a href="dx.doi.org/10.1038/s41598-018-19382-2">Sci. Rep. <b>8</b>, 2314 (2018).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">367. <b>Benedetti</b> et al., "A generative modeling approach for benchmarking and training shallow quantum circuits", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1801.07686">arXiv:1801.07686</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">366. <b>Botzem</b> et al., "Tuning methods for semiconductor spin--qubits", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1801.03755">arXiv:1801.03755</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">365. <b>Schneider</b> et al., "Local Sensing with an AC Stark Spectrum Analyzer", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1801.05144">arXiv:1801.05144</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">364. <b>Seah</b> et al., "Work production of quantum rotor engines", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1801.02820">arXiv:1801.02820</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">363. <b>Susa</b> et al., "Exponential Speedup of Quantum Annealing by Inhomogeneous Driving of the Transverse Field", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1801.02005">arXiv:1801.02005</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">362. <b>Hanschke</b> et al., "Quantum dot single photon sources with ultra-low multi-photon probability", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1801.01672">arXiv:1801.01672</a></div>
<div class="col-md-2"><a href="https://github.com/qutip/qutip-notebooks/blob/master/examples/photon-emission.ipynb">Notebook</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">361. <b>Vermersch</b> et al., "Unitary n-designs via random quenches in atomic Hubbard and Spin models: Application to the measurement of Renyi entropies", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1801.00999">arXiv:1801.00999</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">360. <b>Krastanov</b> et al., "Optimized Entanglement Purification", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1712.09762">arXiv:1712.09762</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">359. <b>Dahlberg</b> et al., "SimulaQron - A simulator for developing quantum internet software", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1712.08032">arXiv:1712.08032</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">358. <b>Abdel-Wahab</b> et al., "Dynamic evolution of double Λ five-level atom interacting with one-mode electromagnetic cavity field", </div>
<div class="col-md-4"><a href="https://doi.org/10.1007/s12043-017-1485-x">Pramana - J. Phys. <b>89</b>, 87 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">357. <b>Dai</b> et al., "Quantum simulation of the general semi-classical Rabi model in regimes of arbitrarily strong driving", </div>
<div class="col-md-4"><a href="https://doi.org/10.1063/1.5006745">Appl. Phys. Lett. <b>111</b>, 242601 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">356. <b>Zhou</b> et al., "Simulating the Lipkin-Meshkov-Glick model in a hybrid quantum system", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1712.06234">arXiv:1712.06234</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">355. <b>Otterbach</b> et al., "Unsupervised Machine Learning on a Hybrid Quantum Computer", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1712.05771">arXiv:1712.05771</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">354. <b>Wang</b> et al., "Parallel quantum operations with chiral spin states in a superconducting circuit", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1712.05261">arXiv:1712.05261</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">353. <b>Tugen</b> et al., "A Comparative Study of Coupled High-Q Cavity-Quantum Dot System Regarding Dipole Induced Transparency", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1712.01944">arXiv:1712.01944</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">352. <b>Chen</b> et al., "Tuning coupling between superconducting resonators with collective qubits", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1712.04357">arXiv:1712.04357</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">351. <b>Touzard</b> et al., "Coherent oscillations inside a quantum manifold stabilized by dissipation", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1705.02401">arXiv:1705.02401</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">350. <b>Zhao</b> et al., "Two-photon driven Kerr resonator for quantum annealing with three-dimensional circuit QED", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1712.03613">arXiv:1712.03613</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">349. <b>Tezak</b> et al., "Low-dimensional manifolds for exact representation of open quantum systems", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.96.062113">Phys. Rev. A <b>96</b>, 062113 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">348. <b>Lambert</b> et al., "Amplified and tunable transverse and longitudinal spin-photon coupling in hybrid circuit-QED", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1712.02077">arXiv:1712.02077</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">347. <b>Mirkin</b> et al., "In the quest of relations between non-Markovianity and quantum optimal control", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1711.10551">arXiv:1711.10551</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">346. <b>Gu</b> et al., "Topological edge states and pumping in a chain of coupled superconducting qubits", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1711.06829">arXiv:1711.06829</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">345. <b>Jiang</b> et al., "Quantum algorithms to simulate many-body physics of correlated fermions", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1711.05395">arXiv:1711.05395</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">344. <b>Brambilla</b> et al., "Heavy quarkonium suppression in a fireball", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1711.04515">arXiv:1711.04515</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">343. <b>Johnson</b> et al., "QVECTOR: an algorithm for device-tailored quantum error correction", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1711.02249">arXiv:1711.02249</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">342. <b>Li</b> et al., "Preparing entangled states between two NV centers via the damping of nanomechanical resonators", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1038/s41598-017-14245-8">Sci. Rep. <b>7</b>, 14116 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">341. <b>Khan</b> et al., "Frequency combs in a lumped element Josephson junction circuit", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1711.00772">arXiv:1711.00772</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">340. <b>Trautmann</b> et al., "Trapped-ion quantum simulation of excitation transport: disordered, noisy, and long-range connected quantum networks", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1710.09408">arXiv:1710.09408</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">339. <b>Hu</b> et al., "Dark states and delocalization: competing effects of quantum coherence on the efficiency of light harvesting systems", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1710.06792">arXiv:1710.06792</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">338. <b>Potočnik</b> et al., "Studying Light-Harvesting Models with Superconducting Circuits", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1710.07466">arXiv:1710.07466</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">337. <b>Banchi</b> et al., "Driven Quantum Dynamics: Will It Blend?", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevX.7.041015">Phys. Rev. X <b>7</b>, 041015 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">336. <b>Dhand</b> et al., "Quantum simulation via all-optically generated tensor network states", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1710.06103">arXiv:1710.06103</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">335. <b>Poonia</b> et al., "Quantum Biomimetic Modeling of Diamond NV<sup>-</sup> Center Spin Dynamics", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1709.07632">arXiv:1709.07632</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">334. <b>Nimmrichter</b> et al., "Quantum and classical dynamics of a three-mode absorption refrigerator", </div>
<div class="col-md-4"><a href=" https://doi.org/10.22331/q-2017-12-11-37">Quantum <b>1</b>, 37 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">333. <b>Qin</b> et al., "Exponentially-Enhanced Light-Matter Interaction, Cooperativities, and Steady-State Entanglement Using Parametric Amplification", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1709.09555">arXiv:1709.09555</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">332. <b>Ishibashi</b> et al., "Oscillation collapse in coupled quantum van der Pol oscillators", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevE.96.052210">Phys. Rev. E <b>96</b>, 052210 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">331. <b>Elbin</b> et al., "Rényi Entropies from Random Quenches in Atomic Hubbard and Spin Models", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1709.05060">arXiv:1709.05060</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">330. <b>Li</b> et al., "Quantum microwave-optical interface with nitrogen-vacancy centers in diamond", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.96.032342">Phys. Rev. A <b>96</b>, 032342 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">329. <b>Diguna</b> et al., "The coupling of single-photon exciton–biexciton quantum dot and cavity", </div>
<div class="col-md-4"><a href="https://doi.org/10.1142/S0218863517500291"> J. Nonlinear Optic. Phys. Mat. 1750029, (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">328. <b>Lee</b> et al., "Effective formalism for open-quantum-system dynamics: Time-coarse-graining approach", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.97.012102">Phys. Rev. A <b>97</b>, 012102 (2018).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">327. <b>de Moraes Neto</b> et al., "Steady many-body entanglements in dissipative systems", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.96.062313">Phys. Rev. A <b>96</b>, 062313 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">326. <b>Zhang</b> et al., "Efficient numerical solution of excitation number conserving quantum systems", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1063/1.5000038">AIP Advances <b>7</b>, 085225 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">325. <b>Heuck</b> et al., "Temporally and frequency multiplexed single photon source using quantum feedback control for scalable photonic quantum technologies", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1708.08875">arXiv:1708.08875</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">324. <b>Kurian</b> et al., "Oxidative species-induced excitonic transport in tubulin aromatic networks: Potential implications for neurodegenerative disease", </div>
<div class="col-md-4"><a href="https://doi.org/10.1016/j.jphotobiol.2017.08.033">J. Photochem. Photobiol. B: Biology (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">323. <b>Hwang</b> et al., "Dissipative phase transition in the open quantum Rabi model", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.97.013825">Phys. Rev. A <b>97</b>, 013825 (2018).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">322. <b>Higgins</b> et al., "Coherent Control of a Single Trapped Rydberg Ion", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevLett.119.220501">Phys. Rev. Lett. <b>119</b>, 220501 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">321. <b>Schlipf</b> et al., "A molecular quantum spin network controlled by a single qubit", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1126/sciadv.1701116">Sci. Adv. <b>3</b>, 1701116 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">320. <b>Hardal</b> et al., "Quantum heat engine with coupled superconducting resonators", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevE.96.062120">Phys. Rev. E <b>96</b>, 062120 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">319. <b>Katabarwa</b> et al., "Quantum Projective Simulation with Hamiltonian Evolution: A study in reinforcement learning", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1708.00123">arXiv:1708.00123</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">318. <b>Kienzler</b> et al., "Quantum Harmonic Oscillator State Control in a Squeezed Fock Basis", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevLett.119.033602">Phys. Rev. Lett. <b>119</b>, 033602 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">317. <b>Wen</b> et al., "Reflective amplification without population inversion from a strongly driven superconducting qubit", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1707.06400">arXiv:1707.06400</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">316. <b>Schmidt</b> et al., "WavePacket: A Matlab package for numerical quantum dynamics. II: Open quantum systems, optimal control, and model reduction", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1707.06077">arXiv:1707.06077</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">315. <b>Impens</b> et al., "Shortcut to adiabaticity in a Stern-Gerlach apparatus", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.96.043609">Phys. Rev. A <b>96</b>, 043609 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">314. <b>Dalmonte</b> et al., "Quantum Simulation and Spectroscopy of Entanglement Hamiltonians", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1707.04455">arXiv:1707.04455</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">313. <b>Gu</b> et al., "Microwave photonics with superconducting quantum circuits", </div>
<div class="col-md-4"><a href="https://doi.org/10.1016/j.physrep.2017.10.002">Phys. Rep. <b>718-719</b>, 1 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">312. <b>Kiršanskas</b> et al., "QmeQ 1.0: An open-source Python package for calculations of transport through quantum dot devices", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1016/j.cpc.2017.07.024">Comput. Phys. Commun. <b>221</b>, 317 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">311. <b>Krämer</b> et al., "QuantumOptics.jl: A Julia framework for simulating open quantum systems", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1707.01060">arXiv:1707.01060</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">310. <b>Schneeweiss</b> et al., "Cold-atom based implementation of the quantum Rabi model", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1706.07781">arXiv:1706.07781</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">309. <b>Powell</b> et al., "Redfield Treatment of Multi-Pathway Electron Transfer in Artificial Photosynthetic Systems", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1021/acs.jpcb.7b02748">J. Phys. Chem. B (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">308. <b>Qvarfort</b> et al., "Gravimetry through non-linear optomechanics", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1706.09131">arXiv:1706.09131</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">307. <b>Zhao</b> et al., "Circuit QED with qutrits: Coupling three or more atoms via virtual-photon exchange", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.96.043833">Phys. Rev. A <b>96</b>, 043833 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">306. <b>Calic</b> et al., "Deterministic radiative coupling of two semiconductor quantum dots to the optical mode of a photonic crystal nanocavity", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1038/s41598-017-03989-y">Sci. Rep. <b>7</b>, 4100 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">305. <b>Forn-Díaz</b> et al., "On-Demand Microwave Generator of Shaped Single Photons", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevApplied.8.054015">Phys. Rev. Appl. <b>8</b>, 054015 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">304. <b>Bauckhage</b> et al., "Adiabatic Quantum Computing for Binary Clustering", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1706.05528">arXiv:1706.05528</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">303. <b>Nigg</b>, "Observing quantum synchronization blockade in circuit quantum electrodynamics", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.97.013811">Phys. Rev. A <b>97</b>, 013811 (2018).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">302. <b>Liu</b> et al., "High Purcell factor generation of coherent on-chip single photons", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1706.04422">arXiv:1706.04422</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">301. <b>Román-Ancheyta</b> et al., "Dynamical Casimir effect in stochastic systems: Photon harvesting through noise", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.96.032501">Phys. Rev. A <b>96</b>, 032501 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">300. <b>Hong</b> et al., "Hanbury Brown and Twiss interferometry of single phonons from an optomechanical resonator", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1126/science.aan7939">Science <b>358</b>, 203 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">299. <b>Pérez-Ríos</b> et al., "Ultracold molecule assembly with photonic crystals", </div>
<div class="col-md-4"><a href="https://doi.org/10.1088/1367-2630/aa9b49">New J. Phys. <b>19</b>, 123035 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">298. <b>Zambrano-Serrano</b> et al., "Chaos generation in fractional-order switched systems and its digital implementation", </div>
<div class="col-md-4"><a href="https://doi.org/10.1016/j.aeue.2017.05.032">International Journal of Electronics and Communications (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">297. <b>Yoshihara</b> et al., "Characteristic spectra of circuit quantum electrodynamics systems from the ultrastrong- to the deep-strong-coupling regime", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.95.053824">Phys. Rev. A <b>95</b>, 053824 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">296. <b>Endo</b> et al., "Dynamics of an ultra-strongly-coupled system interacting with a driven nonlinear resonator", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1705.08688">arXiv:1705.08688</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">295. <b>Venkatesh</b> et al., "Cooperative Effects in Closely Packed Quantum Emitters with Collective Dephasing", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevLett.120.033602">Phys. Rev. Lett. <b>120</b>, 033602 (2018).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">294. <b>Snijders</b> et al., "A fiber coupled cavity QED source of identical single photons", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1705.05876">arXiv:1705.05876</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">293. <b>Zanker</b> et al., "Analyzing the spectral density of a perturbed analog quantum simulator using Keldysh formalism", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1705.02325">arXiv:1705.02325</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">292. <b>Csurgay</b> et al., "Toward engineering design of quantum circuits", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1002/cta.2358">Int. J. Circ. Theor. Appl. (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">291. <b>Megyeri</b> et al., "Why material slow light does not improve cavity-enhanced atom detection", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1080/09500340.2017.1384512">J. Mod. Phys. (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">290. <b>Huembeli</b> et al., "Towards a heralded eigenstate-preserving measurement of multi-qubit parity in circuit QED", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.96.012313">Phys. Rev. A <b>96</b>, 012313 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">289. <b>Shammah</b> et al., "Superradiance with local phase-breaking effects", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.96.023863">Phys. Rev. A <b>96</b>, 023863 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">288. <b>Arenz</b> et al., "The roles of drift and control field constraints upon quantum control speed limits", </div>
<div class="col-md-4"><a href="https://doi.org/10.1088/1367-2630/aa8242">New J. Phys. <b>19</b>, 103015 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">287. <b>Leroux</b> et al., "Simple variational ground state and pure-cat-state generation in the quantum Rabi model", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.96.043834">Phys. Rev. A <b>96</b>, 043834 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">286. <b>Laflamme</b> et al., "Continuous measurement of an atomic current", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.95.043843">Phys. Rev. A <b>95</b>, 043843 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">285. <b>de Assis</b> et al., "Negative response with an optical cavity and traveling wave fields", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.96.013821">Phys. Rev. A <b>96</b>, 013821 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">284. <b>Gough</b>, "The Tyranny of Qubits - Quantum Technology's Scalability Bottleneck", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1703.05342">arXiv:1703.05342</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">283. <b>Hamsen</b> et al., "Two-Photon Blockade in an Atom-Driven Cavity QED System", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevLett.118.133604">Phys. Rev. Lett. <b>118</b>, 133604 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">282. <b>Hu</b> et al., "Accessing dark states optically through excitation-ferrying states", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1703.09614">arXiv:1703.09614</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">281. <b>Escobedo</b>, "Effective Field Theories for heavy probes in a hot QCD plasma and in the early universe", </div>
<div class="col-md-4"><a href="https://doi.org/10.1051/epjconf/201713701008">EPJ Web of Conferences <b>137</b>, 01008 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">280. <b>Hu</b>, "Photonic transistor and router using a single quantum-dot-confined spin in a single-sided optical microcavity", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1038/srep45582">Sci. Rep. <b>7</b>, 45582 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">279. <b>Robertson</b> et al., "Tailored Codes for Small Quantum Memories", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevApplied.8.064004">Phys. Rev. Applied <b>8</b>, 064004 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">278. <b>Raghunandan</b> et al., "High-density quantum sensing with dissipative first order transitions", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1703.07358">arXiv:1703.07358</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">277. <b>Gilmore</b> et al., "Amplitude Sensing below the Zero-Point Fluctuations with a Two-Dimensional Trapped-Ion Mechanical Oscillator", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevLett.118.263602">Phys. Rev. Lett. <b>118</b>, 263602 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">276. <b>Friedman</b> et al., "The Wigner Flow for Open Quantum Systems", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1703.04844">arXiv:1703.04844</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">275. <b>Lörch</b> et al., "Quantum Synchronization Blockade: Energy Quantization Hinders Synchronization of Identical Oscillators", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevLett.118.243602">Phys. Rev. Lett. <b>118</b>, 243602 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">274. <b>Manenti</b> et al., "Circuit quantum acoustodynamics with surface acoustic waves", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1038/s41467-017-01063-9">Nat. Commun. <b>8</b>, 975 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">273. <b>Amitai</b> et al., "Synchronization of an optomechanical system to an external drive", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.95.053858">Phys. Rev. A <b>95</b>, 053858 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">272. <b>Cesa</b> et al., "Two-qubit entangling gates between distant atomic qubits in a lattice", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.95.052330">Phys. Rev. A <b>95</b>, 052330 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">271. <b>Ren</b> et al., "Evanescent-Vacuum-Enhanced Photon-Exciton Coupling and Fluorescence Collection", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevLett.118.073604">Phys. Rev. Lett. <b>118</b>, 073604 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">270. <b>Chu</b> et al., "Quantum acoustics with superconducting qubits", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1126/science.aao1511">Science <b>358</b>, 199 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">269. <b>Fischer</b> et al., "Signatures of two-photon pulses from a quantum two-level system", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1038/nphys4052">Nat. Phys. <b>13</b>, 649 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">268. <b>Marshman</b> et al., "Investigating and improving student understanding of the probability distributions for measuring physical observables in quantum mechanics", </div>
<div class="col-md-4"><a href="https://doi.org/10.1088/1361-6404/aa57d1">Eur. J. Phys. <b>38</b>, 025705 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">267. <b>Borges</b> et al., "Influence of the asymmetric excited state decay on coherent population trapping: atom × quantum dot", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1702.07692">arXiv:1702.07692</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">266. <b>Pleinert</b> et al., "Hyperradiance from collective behavior of coherently driven atoms", </div>
<div class="col-md-4"><a href="https://doi.org/10.1364/OPTICA.4.000779">Optica <b>4</b>, 779 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">265. <b>Oviedo-Casado</b> et al., "Magnetic field enhancement of organic photovoltaic cells performance", </div>
<div class="col-md-4"><a href="dx.doi.org/10.1038/s41598-017-04621-9">Sci. Rep. <b>7</b>, 4297 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">264. <b>Whalen</b> et al., "Open quantum systems with delayed coherent feedback", </div>
<div class="col-md-4"><a href="https://doi.org/10.1088/2058-9565/aa8331">Quantum Sci. Technol. <b>2</b>, 044008 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">263. <b>Cottet</b> et al., "Observing a quantum Maxwell demon at work", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1073/pnas.1704827114">Proc. Natl. Acad. Sci. U.S.A. <b>114</b>, 7561 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">262. <b>Mazloom</b> et al., "Adiabatic state preparation of stripe phases with strongly magnetic atoms", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.96.033602">Phys. Rev. A <b>96</b>, 033602 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">261. <b>Poonia</b> et al., "Functional window of the avian compass", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevE.95.052417">Phys. Rev. E <b>95</b>, 052417 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">260. <b>Su</b> et al., "Generating double NOON states of photons in circuit QED", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.95.022339">Phys. Rev. A <b>95</b>, 022339 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">259. <b>Kiukas</b> et al., "Remote parameter estimation in a quantum spin chain enhanced by local control", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.95.052132">Phys. Rev. A <b>95</b>, 052132 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">258. <b>Gely</b> et al., "Convergence of the multimode quantum Rabi model of circuit quantum electrodynamics", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevB.95.245115">Phys. Rev. B <b>95</b>, 245115 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">257. <b>Radtke</b> et al., "Photonic Quantum Operations via the Quantum Carburettor Effect", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1701.04251">arXiv:1701.04251</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">256. <b>Lagoudakis</b> et al., "Observation of Mollow Triplets with Tunable Interactions in Double Lambda Systems of Individual Hole Spins", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevLett.118.013602">Phys. Rev. Lett. <b>118</b>, 013602 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">255. <b>Pucci</b> et al., "Quantum effects in the cooperative scattering of light by atomic clouds", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.95.053625">Phys. Rev. A <b>95</b>, 053625 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">254. <b>Gessner</b> et al., "Resolution-enhanced entanglement detection", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.95.032326">Phys. Rev. A <b>95</b>, 032326 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">253. <b>Nigg</b> et al., "Superconducting Grid-Bus Surface Code Architecture for Hole-Spin Qubits", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevLett.118.147701">Phys. Rev. Lett. <b>118</b>, 147701 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">252. <b>Lüer</b> et al., "Lévy Defects in Matrix-Immobilized J Aggregates: Tracing Intra-and Intersegmental Exciton Relaxation", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1021/acs.jpclett.6b02704">J. Phys. Chem. Lett. <b>8</b>, 547 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">251. <b>Dive</b> et al., "In situ upgrade of quantum simulators to universal computers", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1701.01723">arXiv:1701.01723</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">250. <b>Barnes</b> et al., "Fast microwave-driven three-qubit gates for cavity-coupled superconducting qubits", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevB.96.024504">Phys. Rev. B <b>96</b>, 024504 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">249. <b>Hu</b>, "Spin-based single-photon transistor, dynamic random access memory, diodes, and routers in semiconductors", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevB.94.245307">Phys. Rev. B <b>94</b>, 245307 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">248. <b>Leung</b> et al., "Speedup for quantum optimal control from automatic differentiation based on graphics processing units", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.95.042318">Phys. Rev. A <b>95</b>, 042318 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">247. <b>Bruhat</b> et al., "Strong coupling between an electron in a quantum dot circuit and a photon in a cavity", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1612.05214">arXiv:1612.05214</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">246. <b>Zanoci</b> et al., "Entanglement and thermalization in open fermion systems", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1612.04840">arXiv:1612.04840</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">245. <b>Volokitin</b> et al., "Computation of the asymptotic states of modulated open quantum systems with a numerically exact realization of the quantum trajectory method", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevE.96.053313">Phys. Rev. E <b>96</b>, 053313 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">244. <b>Montenegro</b> et al., "Macroscopic nonclassical-state preparation via postselection", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.96.053851">Phys. Rev. A <b>96</b>, 053851 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">243. <b>Cirio</b> et al., "Amplified Optomechanical Transduction of Virtual Radiation Pressure", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevLett.119.053601">Phys. Rev. Lett. <b>119</b>, 053601 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">242. <b>Romero</b> et al., "Quantum autoencoders for efficient compression of quantum data", </div>
<div class="col-md-4"><a href="https://doi.org/10.1088/2058-9565/aa8072">Quantum Sci. Technol. <b>2</b>, 045001 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">241. <b>Zhong</b>, "Controllable and fast quantum-information transfer between distant nodes in two-dimensional networks", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1038/s41598-016-0016-1">Sci. Rep. <b>6</b>, 8 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">240. <b>Guo</b> et al., "Giant acoustic atom: A single quantum system with a deterministic time delay", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.95.053821">Phys. Rev. A <b>95</b>, 053821 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">239. <b>Vermersch</b> et al., "Quantum State Transfer via Noisy Photonic and Phononic Waveguides", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevLett.118.133601">Phys. Rev. Lett. <b>118</b>, 133601 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">238. <b>Gudmundsson</b> et al., "Time-dependent current into and through multilevel parallel quantum dots in a photon cavity", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevB.95.195307">Phys. Rev. B <b>95</b>, 195307 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">237. <b>Braumüller</b> et al., "Analog quantum simulation of the Rabi model in the ultra-strong coupling regime", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1038/s41467-017-00894-w">Nat. Commun. <b>8</b>, 779 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">236. <b>Lagoudakis</b> et al., "Ultrafast coherent manipulation of trions in site-controlled nanowire quantum dots", </div>
<div class="col-md-4"><a href="https://doi.org/10.1364/OPTICA.3.001430">Optica <b>3</b>, 1430 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">235. <b>Roghani</b> et al., "Dissipative Preparation of Entangled Many-Body States with Rydberg Atoms", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1611.09612">arXiv:1611.09612</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">234. <b>Lambert</b> et al., "Superradiance with an ensemble of superconducting flux qubits", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevB.94.224510">Phys. Rev. B <b>94</b>, 224510 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">233. <b>Yanay</b> et al., "Shelving-style QND phonon-number detection in quantum optomechanics", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1088/1367-2630/aa6206">New J. Phys. <b>19</b>, 033014 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">232. <b>Kirton</b> et al., "Suppressing and Restoring the Dicke Superradiance Transition by Dephasing and Decay", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevLett.118.123602">Phys. Rev. Lett. <b>118</b>, 123602 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">231. <b>Fischer</b> et al., "On-Chip Architecture for Self-Homodyned Nonclassical Light", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevApplied.7.044002">Phys. Rev. Applied <b>7</b>, 044002 (2017).</a></div>
<div class="col-md-2"><a href="https://github.com/qutip/qutip-notebooks/blob/master/examples/homodyned-Jaynes-Cummings-emission.ipynb">Notebook</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">230. <b>Combes</b> et al., "The SLH framework for modeling quantum input-output networks", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1080/23746149.2017.1343097">Advances in Physics: X <b>2</b>, 784 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">229. <b>Lucarelli</b>, "Quantum optimal control via gradient ascent in function space and the time-bandwidth quantum speed limit", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1611.00188">arXiv:1611.00188</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">228. <b>Bulutay</b>, "Cat-state generation and stabilization for a nuclear spin through electric quadrupole interaction", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.96.012312">Phys. Rev. A <b>96</b>, 012312 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">227. <b>De Roeck</b> et al., "Step Density Profiles in Localized Chains", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1007/s10955-017-1769-z">J. Stat. Phys. <b>167</b>, 1143 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">226. <b>Granade</b> et al., "QInfer: Statistical inference software for quantum applications", </div>
<div class="col-md-4"><a href="https://doi.org/10.22331/q-2017-04-25-5">Quantum <b>1</b>, 5 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">225. <b>Cotrufo</b> et al., "Coherent Atom-Phonon Interaction through Mode Field Coupling in Hybrid Optomechanical Systems", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevLett.118.133603">Phys. Rev. Lett. <b>118</b>, 133603 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">224. <b>Jonsson</b> et al., "Efficient determination of the Markovian time-evolution towards a steady-state of a complex open quantum system", </div>
<div class="col-md-4"><a href="https://doi.org/10.1016/j.cpc.2017.06.018">Comput. Phys. Commun. <b>220</b>, 81 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">223. <b>Lahoz-Beltra</b>, "Quantum Genetic Algorithms for Computer Scientists", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.3390/computers5040024 ">Computers <b>5</b>, 24 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">222. <b>Davis-Tilley</b> et al., "Synchronization of micromasers", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.94.063819">Phys. Rev. A <b>94</b>, 063819 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">221. <b>Weinberg</b> et al., "QuSpin: a Python package for dynamics and exact diagonalisation of quantum many body systems part I: spin chains", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.21468/SciPostPhys.2.1.003">SciPost Phys. <b>2</b>, 003 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">220. <b>Dory</b> et al., "Tuning the photon statistics of a strongly coupled nanophotonic system", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.95.023804">Phys. Rev. A <b>95</b>, 023804 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">219. <b>Lachance-Quirion</b> et al., "Resolving quanta of collective spin excitations in a millimeter-sized ferromagnet", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1126/sciadv.1603150">Science Advances <b>3</b>, (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">218. <b>Doyeux</b> et al., "Excitation injector in an atomic chain: Long-range transport and efficiency amplification", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.95.012138">Phys. Rev. A <b>95</b>, 012138 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">217. <b>Roulet</b> et al., "Autonomous Rotor Heat Engine", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevE.95.062131">Phys. Rev. E <b>95</b>, 062131 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">216. <b>Nigg</b> et al., "Robust quantum optimizer with full connectivity", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1126/sciadv.1602273">Science Advances <b>3</b>, 1602273 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">215. <b>Puri</b> et al., "Quantum annealing with all-to-all connected nonlinear oscillators", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1038/ncomms15785">Nat. Commun. <b>8</b>, 15785 (2017).></a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">214. <b>Shi</b> et al., "Model reduction of cavity nonlinear optics for photonic logic: a quasi-principal components approach", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1088/0022-3727/49/46/465501">J. Phys. D: Appl. Phys. <b>49</b>, 465501 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">213. <b>McNally</b> et al., "Performance of 1D quantum cellular automata in the presence of error", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1063/1.4963300">AIP Advances <b>6</b>, 095115 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">212. <b>Zhong</b> et al., "Towards quantum entanglement of micromirrors via a two-level atom and radiation pressure", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1609.00590">arXiv:1609.00590</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">211. <b>Roth</b> et al., "Synchronization of active atomic clocks via quantum and classical channels", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.94.043841">Phys. Rev. A <b>94</b>, 043841 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">210. <b>Jarlov</b> et al., "Effect of Pure Dephasing and Phonon Scattering on the Coupling of Semiconductor Quantum Dots to Optical Cavities", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1103/PhysRevLett.117.076801">Phys. Rev. Lett. <b>117</b>, 076801 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">209. <b>Mahajan</b> et al., "Entanglement structure of non-equilibrium steady states", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1608.05074">arXiv:1608.05074</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">208. <b>Zhu</b> et al., "Implementing phase-covariant cloning in circuit quantum electrodynamics", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1016/j.aop.2016.07.015">Annals of Physics <b>373</b>, 512 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">207. <b>Fischer</b> et al., "Dynamical modeling of pulsed two-photon interference", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1088/1367-2630/18/11/113053">New J. Phys. <b>18</b>, 113053 (2016).</a></div>
<div class="col-md-2"><a href="https://github.com/qutip/qutip-notebooks/blob/master/examples/pulse-wise-second-order-coherence-g2.ipynb">Notebook1</a><br />
<a href="https://github.com/qutip/qutip-notebooks/blob/master/examples/pulse-wise-two-photon-interference.ipynb">Notebook2</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">206. <b>Seifoory</b> et al., "The properties of squeezed optical states created in lossy cavities", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1608.05005">arXiv:1608.05005</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">205. <b>Qin</b> et al., "Heralded quantum controlled-phase gates with dissipative dynamics in macroscopically distant resonators", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.96.012315">Phys. Rev. A <b>96</b>, 012315 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">204. <b>Cruzeiro</b> et al., "Interactively Applying the Variational Method to the Dihydrogen Molecule: Exploring Bonding and Antibonding", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1021/acs.jchemed.6b00017">Journal of Chemical Education (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">203. <b>Pleinert</b> et al., "Quantum signatures of collective behavior of a coherently driven two atom system coupled to a single-mode of the electromagnetic field", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1608.00137">arXiv:1608.00137</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">202. <b>Wang</b> et al., "Multiple-output microwave single-photon source using superconducting circuits with longitudinal and transverse couplings", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.94.053858">Phys. Rev. A <b>94</b>, 053858 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">201. <b>Marshall</b> et al., "Continuous-variable quantum computing on encrypted data", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1038/ncomms13795">Nat. Comm. <b>7</b>, 13795 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px' id="200">
<div class="col-md-6">200. <b>Dajka</b> et al., "Leggett–Garg inequalities for a quantum top affected by classical noise", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1007/s11128-016-1401-1">J. Quantum Inf. Process. (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">199. <b>Rouxinol</b> et al., "Measurements of nanoresonator-qubit interactions in a hybrid quantum electromechanical system", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1088/0957-4484/27/36/364003">Nanotechnology <b>27</b>, 364003 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">198. <b>Hocker</b> et al., "PEET: a Matlab tool for estimating physical gate errors in quantum information processing systems", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1007/s11128-016-1337-5">Quantum Information Processing (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">197. <b>Daskin</b>, "Quantum eigenvalue estimation for irreducible non-negative matrices", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1142/S0219749916500052">Int. J. Quantum Inform. <b>14</b>, 1650005 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">196. <b>Dlaska</b> et al., "Robust quantum state transfer via topologically protected edge channels in dipolar arrays", </div>
<div class="col-md-4"><a href="https://doi.org/10.1088/2058-9565/2/1/015001">Quantum Sci. Technol. <b>2</b>, 015001 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">195. <b>Juliusson</b> et al., "Manipulating Fock states of a harmonic oscillator while preserving its linearity", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.94.063861">Phys. Rev. A <b>94</b>, 063861 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">194. <b>Banchi</b> et al., "Quantum gate learning in qubit networks: Toffoli gate without time-dependent control", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1038/npjqi.2016.19">njp Quantum Information <b>2</b>, 16019 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">193. <b>Hofer</b> et al., "Autonomous quantum refrigerator in a circuit QED architecture based on a Josephson junction", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevB.94.235420">Phys. Rev. B <b>94</b>, 235420 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">192. <b>Sampaio</b> et al., "Calorimetric measurement of work for a driven harmonic oscillator", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevE.94.062122">Phys. Rev. E <b>94</b>, 062122 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">191. <b>Molony</b> et al., "Production of ultracold 87Rb133Cs in the absolute ground state: complete characterisation of the STIRAP transfer", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1002/cphc.201600501">ChemPhysChem (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">190. <b>Moran</b>, "Quintuple: a Python 5-qubit quantum computer simulator to facilitate cloud quantum computing", </div>
<div class="col-md-4"><a href="https://arxiv.org/abs/1606.09225">arXiv:1606.09225</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">189. <b>Falloon</b> et al., "QSWalk: A Mathematica package for quantum stochastic walks on arbitrary graphs", </div>
<div class="col-md-4"><a href="https://doi.org/10.1016/j.cpc.2017.03.014">Comp. Phys. Commun. <b>217</b>, 162 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">188. <b>Lammers</b> et al., "Open-system many-body dynamics through interferometric measurements and feedback", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevA.94.052120">Phys. Rev. A <b>94</b>, 052120 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">187. <b>Li</b> et al., "Hybrid Quantum Device with Nitrogen-Vacancy Centers in Diamond Coupled to Carbon Nanotubes", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1103/PhysRevLett.117.015502">Phys. Rev. Lett. <b>117</b>, 015502 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">186. <b>Grimm</b> et al., "Optomechanical self-oscillations in an anharmonic potential: engineering a nonclassical steady state", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1088/2040-8978/18/9/094004">J. Opt. <b>18</b>, 094004 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">185. <b>Puri</b> et al., "Engineering the quantum states of light in a Kerr-nonlinear resonator by two-photon driving", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1038/s41534-017-0019-1">npj Quantum Information <b>3</b>, 18 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">184. <b>Rossatto</b> et al., "Relaxation time for monitoring the quantumness of an intense cavity field", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1103/PhysRevA.94.033819">Phys. Rev. A <b>94</b>, 033819 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">183. <b>Shackerley-Bennett</b> et al., "The reachable set of single-mode quadratic Hamiltonians", </div>
<div class="col-md-4"><a href="https://doi.org/10.1088/1751-8121/aa6243">J. Phys. A: Math. Theor. <b>50</b>, 155203 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">182. <b>Blumoff</b> et al., "Implementing and Characterizing Precise Multiqubit Measurements", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1103/PhysRevX.6.031041">Phys. Rev. X <b>6</b>, 031041 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">181. <b>Li</b> et al., "Entangling a single NV centre with a superconducting qubit via parametric couplings between photons and phonons in a hybrid system", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1080/09500340.2016.1185546">Journal of Modern Optics (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">180. <b>Straubel</b> et al., "Entangled light from bimodal optical nanoantennas", </div>
<div class="col-md-4"><a href="https://doi.org/10.1103/PhysRevB.95.085421">Phys. Rev. B <b>95</b>, 085421 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">179. <b>Vool</b> et al., "Continuous Quantum Nondemolition Measurement of the Transverse Component of a Qubit", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1103/PhysRevLett.117.133601">Phys. Rev. Lett. <b>117</b>, 133601 (2016).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">178. <b>Granade</b> et al., "Practical adaptive quantum tomography", </div>
<div class="col-md-4"><a href="https://doi.org/10.1088/1367-2630/aa8fe6">New J. Phys. <b>19</b>, 113017 (2017).</a></div>
</div>
<div class="row" style='margin-bottom: 15px'>
<div class="col-md-6">177. <b>Plankensteiner</b> et al., "Laser noise imposed limitations of ensemble quantum metrology", </div>
<div class="col-md-4"><a href="https://dx.doi.org/10.1088/0953-4075/49/24/245501">J. Phys. B: At. Mol. Opt. Phys. <b>49</b>, 245501 (2016).</a></div>
</div>