Info
この質問は閉じられています。 編集または回答するには再度開いてください。
MathLab programing techniques (online course) problem
1 回表示 (過去 30 日間)
古いコメントを表示
I have problem with the anwer the question i the following quiz
The question is visible in attachment.

Thanks for any help
Sylwia
3 件のコメント
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!