Expectation Values & Wavefunction Collapse

This series of posts lays out the foundational postulates of quantum mechanics using the two-level system of spin 1/2 particles as our model. In additionto a mathematical description of these postulates, MATLAB and Python code is included to show how to translate these ideas in a coding environment.

  • C
  • C++
  • Ruby
  • PHP
  • NODE
#include <stdio.h>

int main() {
    for(int i = 1; i <= 10; i++) {
        printf("%d\n", i);
    }
    return 0;
}
#include <iostream>

int main() {
    for(int i = 1; i <= 10; i++) {
        std::cout << i << std::endl;
    }
    return 0;
}
for i in 1..10
  puts i
end
<?php
for ($i = 1; $i <= 10; $i++) {
    echo $i . "\n";
}
?>
for (let i = 1; i <= 10; i++) {
    console.log(i);
}
Leave a Reply
Artist Credit:
Yu SciVis & Art LLC (Dr. Chung-Jui Yu)
Website designed and developed by:
NetzOptimize Inc.
© COPYRIGHT . QUANTUM-RESONANCE.ORG

Quantum Insights