2d matrix column plot

조회 수: 3 (최근 30일)
Jiung Shin
Jiung Shin 2020년 12월 6일
답변: Setsuna Yuuki. 2020년 12월 6일
Hi, I'm new to matlab so my question may sound almost stupid.
If I want to select two cloumn from a matrix and plot it on xy plane, how can i do it?

답변 (1개)

Setsuna Yuuki.
Setsuna Yuuki. 2020년 12월 6일
You can make a plot with comand plot():
x(:,1) = 0:pi/100:2*pi;
x(:,2) = sin(x);
plot(x(:,1),x(:,2))

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by