-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (33 loc) · 1.33 KB
/
index.html
File metadata and controls
38 lines (33 loc) · 1.33 KB
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
<!DOCTYPE html>
<html>
<head>
<title>ZZMeter — Quantum ZZ Measurement</title>
<meta charset="UTF-8">
<style>
body { font-family: Arial, sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; }
img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
code { background: #f4f4f4; padding: 2px 4px; border-radius: 4px; }
pre { background: #f4f4f4; padding: 15px; border-radius: 8px; overflow-x: auto; }
</style>
</head>
<body>
<h1>🔬 ZZMeter v1.0</h1>
<p><strong>Квантовый ZZ-кроссток за 3 строки кода</strong></p>
<img src="zz_meter_final.png" alt="ZZMeter Results">
<h2>🚀 Использование</h2>
<pre><code>meter = ZZMeter()
zz_khz = meter.run_experiment()
meter.plot()</code></pre>
<h3>📊 Результаты</h3>
<ul>
<li>ZZ = 0.0 kHz (симулятор)</li>
<li>R² = 0.9999 (идеальная Bloch петля)</li>
<li>17 точек RX(0°-360°)</li>
</ul>
<p><a href="README.md">Подробности →</a> |
<a href="zz_meter.py">Код →</a> |
<a href="https://github.com/YOUR_USERNAME/ZZMeter">GitHub →</a></p>
<hr>
<p><em>Anton Sidorevich | Minsk 2026 | arXiv pending</em></p>
</body>
</html>