Task,solving in the fastest way
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have a problem how to get a solution the fastest?


1 Commento
Doddy Kastanya
il 15 Gen 2021
Some more description of the problem you are solving would be helpful.
Risposte (2)
Walter Roberson
il 15 Gen 2021
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 Commenti
Image Analyst
il 8 Giu 2022
% 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 Commenti
Vedere anche
Categorie
Scopri di più su Quantum Computing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
