Task,solving in the fastest way
조회 수: 11 (최근 30일)
이전 댓글 표시
I have a problem how to get a solution the fastest?


댓글 수: 1
답변 (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!
