MathLab programing techniques (online course) problem
정보
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
이전 댓글 표시
I have problem with the anwer the question i the following quiz
The question is visible in attachment.

Thanks for any help
Sylwia
댓글 수: 3
Dave B
2021년 11월 21일
Can you rule any of these out?
How many values are stored in each one?
Sylwia Terlicka
2021년 11월 23일
DGM
2021년 11월 23일
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.
답변 (0개)
이 질문은 마감되었습니다.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!