필터 지우기
필터 지우기

How to plot scatter plot?

조회 수: 2 (최근 30일)
Alex
Alex 2014년 3월 24일
댓글: Alex 2014년 3월 24일
I want to plot a scatter plot, with v = 91.25,182.5,365 and A = 2.3,3.3,4.6.
And I want to plot a scatter plot, with A^2 for my vertical axis and v for horzital axis.

채택된 답변

Mischa Kim
Mischa Kim 2014년 3월 24일
편집: Mischa Kim 2014년 3월 24일
Alex, use
v = [91.25,182.5,365];
A = [2.3,3.3,4.6];
scatter(A.^2,v)
  댓글 수: 1
Alex
Alex 2014년 3월 24일
Hey man, thank you again

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by