How to plot this graph?
이전 댓글 표시
please, any one help me to plot this graph
댓글 수: 15
Azzi Abdelmalek
2017년 9월 28일
What graph?
VALARMATHY K
2017년 9월 28일
VALARMATHY K
2017년 9월 28일
KSSV
2017년 9월 28일
If you have data in hand....use plot..
VALARMATHY K
2017년 9월 28일
KSSV
2017년 9월 28일
show the code..and data...
VALARMATHY K
2017년 9월 28일
VALARMATHY K
2017년 9월 28일
KSSV
2017년 9월 28일
The data is different and the plot you are expecting is different...
VALARMATHY K
2017년 9월 28일
KSSV
2017년 9월 28일
Two things: YOu have a data and want to plot? Or from the figure you want data?
VALARMATHY K
2017년 9월 28일
selva raj
2017년 10월 1일
clc; clear all; close all; x = [0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7]; y = [50, 49, 48, 47.5, 47 46.5 46]; plot(x, y, '*-r'), xlim([0.1 0.7]), ylim([30 55]) hold on x1 = [0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7]; y1 = [49.8, 48.5, 47.2, 46.3, 46 45.5 45]; plot(x1, y1, '*-g'), xlim([0.1 0.7]), ylim([30 55]);
selva raj
2017년 10월 1일

VALARMATHY K
2017년 10월 2일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

