Task,solving in the fastest way
11 ビュー (過去 30 日間)
古いコメントを表示
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 日
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.
0 件のコメント
Image Analyst
2022 年 6 月 8 日
% 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);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Quantum Computing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
