Plot a graph using strike rate and yield rate.

Use the data given below to plot graph. Strike rate = 0.07, 0.08, 0.09, 0.10 and Yield rate = 345, 362, 419, 454, 463.

4 件のコメント

Ankit
Ankit 2022 年 1 月 27 日
You want to plot strike rate Vs yield rate ? If so then yield rate and strike should be same size
strike_rate = [0.07, 0.08, 0.09, 0.10];
yield_rate = [345, 362, 419, 454];
plot(strike_rate,yield_rate);xlabel('strike rate');ylabel('yield rate');
Nidhi Nagar
Nidhi Nagar 2022 年 1 月 27 日
Thank you so much....!!
Cris LaPierre
Cris LaPierre 2022 年 1 月 27 日
See Ch 9 of MATLAB Onramp
Nidhi Nagar
Nidhi Nagar 2022 年 1 月 27 日
Thank you so much....!!

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

回答 (0 件)

カテゴリ

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

質問済み:

2022 年 1 月 27 日

コメント済み:

2022 年 1 月 27 日

Community Treasure Hunt

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

Start Hunting!

Translated by