データの補間について
Show older comments
失礼いたします。Excelのデータをグラフにしたいのですが、
x軸は時間相で0%から90%でそれに対応したX,Y,Z軸の移動値がそれぞれに10あります。
folename='Excel file'
sheet='sheet1';
range='A1:D10';
data=xlsread(filename,sheet,range);
x=data(:,1);
y=data(:,2):
figure
plot(x,y);
で1つ作成しました。Aには時間相(%)、BはX軸の値、CはY軸の値、DはZ軸の値
しかし、データが粗いためX,Y,Z軸で現在10つのポイントを合計100ポイントまで増やしてプロットし線グラフにして、その値をまたエクセルに戻したいと思います。どのようにしたらいいでしょうか?
申し訳ありませんがよろしくお願いいたします。
Accepted Answer
More Answers (0)
Categories
Find more on 内挿 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!