Requested 250000x250000 (931.3GB) array exceeds maximum array size preference

3 views (last 30 days)
I have two vector x1 and x2 each of length 250,000X1 samples that I want to multiply them elementwise as below, but I get the error that array exceeds maximum array size preference. How can I solve this issue?
x1.*x2

Accepted Answer

Voss
Voss on 15 Sep 2022
One of them is a 1x250000 row vector. You can transpose that one, or you can convert it (or both) to column vector(s):
x1(:).*x2(:) % 250000x1
  2 Comments

Sign in to comment.

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by