Task,solving in the fastest way
显示 更早的评论
I have a problem how to get a solution the fastest?


1 个评论
Doddy Kastanya
2021-1-15
Some more description of the problem you are solving would be helpful.
回答(2 个)
Walter Roberson
2021-1-15
1 个投票
how to get a solution the fastest
Commercial quantum computers are available from DWave and IBM. HP expects to release its version "soon". Google has a non-commercial but comparatively large quantum computer.
Your problem is beyond the ability of the IBM devices, but with some cleverness is perhaps within the scope of what could be done by Google's system.
This would suggest that the way to get the solution the fastest would be to get employment with Google's quantum computing team.
Is anything faster available in the Universe? That would take a bunch of research to figure out. I speculate that there is a faster approach available that would involve something like using very small black holes to interface to computations done by manipulating the fabric of space at Planck distances.
% Initialization Steps.
clc; % Clear the command window.
close all; % Close all figures (except those of imtool.)
clear; % Erase all existing variables. Or clearvars if you want.
workspace; % Make sure the workspace panel is showing.
format long g;
format compact;
fontSize = 20;
% Define parameters
w = 8;
Day = [1, 32, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366];
h = [2, 2.1, 2.3, 2.4, 3, 2.9, 2.7, 2.6, 2.5, 2.3, 2.2, 2.1, 2.0];
v = [2, 2.2, 2.5, 2.7, 5, 4.7, 4.1, 3.8, 3.7, 2.8, 2.5, 2.3, 2];
% Compute Q and plot it.
Q = v .* w .* h;
plot(Day, Q, 'b.-', 'LineWidth', 2, 'MarkerSize', 30);
grid on
xlabel('Day', 'FontSize',fontSize);
ylabel('Q', 'FontSize',fontSize);
类别
在 帮助中心 和 File Exchange 中查找有关 Quantum Mechanics 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
