I need help finding y on a plot knowing x
4 ビュー (過去 30 日間)
古いコメントを表示
Hi, i created a graph using excel data and now i need to find y on the graph for some x data that is not in the excel tabel
0 件のコメント
回答 (1 件)
Davide Masiello
2022 年 3 月 10 日
編集済み: Davide Masiello
2022 年 3 月 10 日
Let x and y be your dataset extracted from excel, to find y0 at x0, you can use the following code.
y0 = interp1(x,y,x0);
For additional info, check the following link
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Bar Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!