![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/175539/image.png)
Surface under the curve
2 ビュー (過去 30 日間)
古いコメントを表示
I have 3 vectors x,y,z such that function plot3 plots the attached graph. I need to fit a surface such that I get somewhat second attached graph.
I have tried surf function but I don't get the results I want. Kindly help
0 件のコメント
採用された回答
Star Strider
2015 年 3 月 23 日
This looks something like what you want:
x = [0:10 10];
y = [0:10 10];
z= [0 6 5 8 7 7 8 9 7 5 6 0];
figure(1)
patch(x, y, z, 'g')
grid on
view([-30 30])
producing:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/175539/image.png)
2 件のコメント
その他の回答 (1 件)
Konstantinos Sofos
2015 年 3 月 23 日
2 件のコメント
Konstantinos Sofos
2015 年 3 月 23 日
編集済み: Konstantinos Sofos
2015 年 3 月 23 日
Hi,
Your x,y are identical, so your data are collinear. It doesn't make sense and this is not a 3D problem but a 2D
"In statistics, multicollinearity (also collinearity) is a phenomenon in which two or more predictor variables in a multiple regression model are highly correlated, meaning that one can be linearly predicted from the others with a non-trivial degree of accuracy."
参考
カテゴリ
Help Center および File Exchange で Interpolation についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!