Quantum toolbox in Matlab

63 ビュー (過去 30 日間)
Xiaodong
Xiaodong 2015 年 4 月 16 日
回答済み: idris 2023 年 12 月 20 日
Hi,
I noticed that there is a fresh Quantum Toolbox since Matlab 2014b. Is there any introduction or manual to this toolbox? I am a quantum physics theorist, have developed some packages for simulating quantum systems, and would like to know what Mathworks is doing on this toolbox. Could it be an open-source project from Mathworks?
Thanks,
Qi

採用された回答

Philip Caplan
Philip Caplan 2015 年 4 月 17 日
Which Quantum Toolbox are you referring to? MathWorks is not currently developing a Quantum Toolbox. Perhaps you are referring to a third-party package such as: http://qo.phy.auckland.ac.nz/toolbox/
  2 件のコメント
Xiaodong
Xiaodong 2015 年 4 月 18 日
You could be right. When I run ver in matlab, I got
Quantum Toolbox Version 0.10
That could be the QOToolbox I have installed by myself many years ago. It may not be from MathWorks. Sorry for the confusing.
Noah Prisament
Noah Prisament 2023 年 11 月 28 日
MathWorks now has a Quantum Computing Support Package! You can check out and download the support package here: https://www.mathworks.com/matlabcentral/fileexchange/125425-matlab-support-package-for-quantum-computing (or through Add-On Explorer) and you can look further into its capabilities here: https://www.mathworks.com/help/matlab/quantum-computing.html.

サインインしてコメントする。

その他の回答 (2 件)

Mohammed Al-Mahammedi
Mohammed Al-Mahammedi 2021 年 12 月 4 日
CZ gate in matlab
  3 件のコメント
Mohammed Al-Mahammedi
Mohammed Al-Mahammedi 2021 年 12 月 4 日
移動済み: Steven Lord 2023 年 11 月 29 日
these code i like to help
Walter Roberson
Walter Roberson 2021 年 12 月 4 日
移動済み: Steven Lord 2023 年 11 月 29 日
Your code has an infinite loop.
Your swap.m has
function [] = swap(i, j)
and then some logic that does not include a return statement. Then it has
% operate on the state vector with V
qc_v = V * qc_v;
swap (0,1);
measure (0,0);
measure (1,1);
but you are inside of swap() already, so that call to swap(0,1) would be a recursive call. That would lead to infinite recursion. You can only have a function call itself if the function does not always call itself: it must be able to detect that it has finished the work and return without having called itself.

サインインしてコメントする。


idris
idris 2023 年 12 月 20 日
I think it appears mathworks is not focused on quantum

カテゴリ

Help Center および File ExchangeQuantum Mechanics についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by