Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

MathLab programing techniques (online course) problem

1 visualización (últimos 30 días)
Sylwia Terlicka
Sylwia Terlicka el 20 de Nov. de 2021
Cerrada: John D'Errico el 23 de Nov. de 2021
I have problem with the anwer the question i the following quiz
The question is visible in attachment.
Thanks for any help
Sylwia
  3 comentarios
Sylwia Terlicka
Sylwia Terlicka el 23 de Nov. de 2021
I do not know how many values are storage in each one, that is the question right from the quiz.
I try to pick all of them, first one, two, three and four, and other combinations and it was all wrong.
The hint is -> A double array requires 8 bytes per element. The functions ones, zeros, and randn all create double arrays.
DGM
DGM el 23 de Nov. de 2021
The memory() call says you have 10.15E9 bytes available for arrays.
x = randn(1,1E9);
creates a 1x1E9 double array occupying 8E9 bytes.
x = [randn(1,1E9); randn(1,1E9)];
creates two 1x1E9 double arrays and vertically concatenates them to form a 2x1E9 array.

Respuestas (0)

La pregunta está cerrada.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by