please, any one help me to plot this graph

15 件のコメント

Azzi Abdelmalek
Azzi Abdelmalek 2017 年 9 月 28 日
What graph?
VALARMATHY K
VALARMATHY K 2017 年 9 月 28 日
VALARMATHY K
VALARMATHY K 2017 年 9 月 28 日
KSSV
KSSV 2017 年 9 月 28 日
If you have data in hand....use plot..
VALARMATHY K
VALARMATHY K 2017 年 9 月 28 日
i have give the x y value and plotted it but i don't get curve shape
KSSV
KSSV 2017 年 9 月 28 日
show the code..and data...
VALARMATHY K
VALARMATHY K 2017 年 9 月 28 日
x=[0.1 0.2 0.3 0.4 0.5 0.6 0.7 ]
y=[50 49.5 49 48.5 48 47.5 47]
figure,plot(x,y)
axis([0.1 0.7 30 55]);
VALARMATHY K
VALARMATHY K 2017 年 9 月 28 日
This my output
KSSV
KSSV 2017 年 9 月 28 日
The data is different and the plot you are expecting is different...
VALARMATHY K
VALARMATHY K 2017 年 9 月 28 日
I am beginner, i don't have any idea can you please share code for it?
KSSV
KSSV 2017 年 9 月 28 日
Two things: YOu have a data and want to plot? Or from the figure you want data?
VALARMATHY K
VALARMATHY K 2017 年 9 月 28 日
i want data, i want code for it, if i run that code, my output should be like that above figure. That is what i want.
selva raj
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
selva raj 2017 年 10 月 1 日
VALARMATHY K
VALARMATHY K 2017 年 10 月 2 日
Thank you sir, this is what actually i want

サインインしてコメントする。

 採用された回答

KSSV
KSSV 2017 年 9 月 28 日

0 投票

Open the image and run this code: https://in.mathworks.com/matlabcentral/fileexchange/7173-grabit, you will get the data and then plot.

1 件のコメント

VALARMATHY K
VALARMATHY K 2017 年 9 月 28 日
Thank you

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

タグ

質問済み:

2017 年 9 月 28 日

コメント済み:

2017 年 10 月 2 日

Community Treasure Hunt

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

Start Hunting!

Translated by