Task,solving in the fastest way
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a problem how to get a solution the fastest?


1 comentario
Doddy Kastanya
el 15 de En. de 2021
Some more description of the problem you are solving would be helpful.
Respuestas (2)
Walter Roberson
el 15 de En. de 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 comentarios
Image Analyst
el 8 de Jun. de 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 comentarios
Ver también
Categorías
Más información sobre Quantum Computing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
