필터 지우기
필터 지우기

How to plot matrice in a figure ?

조회 수: 1 (최근 30일)
hiba
hiba 2017년 3월 20일
답변: Iddo Weiner 2017년 3월 20일
hi I want to display (plot) the following table in a figure how to do it ?

채택된 답변

Iddo Weiner
Iddo Weiner 2017년 3월 20일
How do you want to display this data? Here's 1 idea:
pair1 = [0 1];
pair2 = [0.5 0.7];
% ...
pairN = [0.1 1.5];
data = [pair1; pair2; pairN];
bar(data)
legend('observation1','observation2','location','NW')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by