Column vector plotting issue

조회 수: 1 (최근 30일)
N/A
N/A 2016년 10월 31일
답변: KSSV 2016년 10월 31일
I create a 3D column vector and plot it using scatter3. When I was using a row vector the code was working fine but with column vector I'm unable to get the x y z values.
v = 2 * randi(2, 3, 1) - 3;
x = v(:, 1);
y = v(:, 2);
z = v(:, 3);
figure
scatter3(x, y, z);
Thank you.

채택된 답변

KSSV
KSSV 2016년 10월 31일
v = 2 * randi(2, 3, 1) - 3;
x = v(1,:);
y = v(2,:);
z = v(3,:);
figure
scatter3(x, y, z);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by