how interpolate 16 three-dimensional points with mesh function?

hi, i would interpolate the 16 points in the figure with the mesh function. This is the figure:
How could i do?
thanks

1 件のコメント

Oleg Komarov
Oleg Komarov 2011 年 5 月 30 日
http://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer

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

回答 (1 件)

Oleg Komarov
Oleg Komarov 2011 年 5 月 30 日

0 投票

To get you started:
[X,Y] = ndgrid(1:4,(1:4).');
Z = rand(4,4);
mesh(X,Y,Z)
surf(X,Y,Z)

カテゴリ

ヘルプ センター および File ExchangeInterpolation についてさらに検索

質問済み:

2011 年 5 月 30 日

Community Treasure Hunt

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

Start Hunting!

Translated by