explain about plot (z_x,z_y)
조회 수: 2 (최근 30일)
이전 댓글 표시
Can you explain what does mean of plot (z_x(:,1),z_y(:,1:2))?
댓글 수: 0
답변 (1개)
M.B
2022년 6월 9일
You get a two graph plot where the x axis data is the first column of z_x, and y axis data is the first two columns of z_y.
It's equivalent to:
plot(z_x(:, 1), z_y(:, 1)); hold on;
plot(z_x(:, 1), z_y(:, 2));
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!