A weird blank matrix....

조회 수: 3 (최근 30일)
Emma Humphrey
Emma Humphrey 2018년 10월 18일
답변: Walter Roberson 2018년 10월 18일
Hello all, I am new to matlab and trying to figure out the following code. As you can see I have commented out the line in question and marked it. Apart from preallocation, I fail to see the point in the code Xu as it doesn't appear to affect the final result.
Many thanks
hold on
title('Plot of uniform random numbers')
Xu = [];
for i=1:nn
x = rand(mm,2) %create a random 2 column matrix of numbers
%Xu = [Xu;x] %what does this do?
plot(x(:,1),x(:,2),'*');
end

답변 (1개)

Walter Roberson
Walter Roberson 2018년 10월 18일
It does not affect the final plotted result. It does, however, keep a record of all of the x values that were generated, in case you want them later.

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by