3D Plot in probability
12 ビュー (過去 30 日間)
古いコメントを表示
I'm working on a probability and reliability function using HL RF method (Hasofer-Lind and Rackwitz-Fiessler) where I've to plot a 3D graph with a Gu function, any 2 variables and the sigma values. How can i plot it?
4 件のコメント
回答 (1 件)
Aditya Mittal
2020 年 4 月 22 日
Hi,
You can easily create 3-D plots using different 3-D plot functions available in MATLAB. You can consider the link below.
You can use meshgridfunction of MATLAB to create matrices for your variables. Further, create the equation for Gu function and then plot the graph.
Pseudo code-
[var1, var2] = meshgrid(v1, v2);
% use var1 , var2 instead of v1, v2 for the calculation of the function.
Gu = (0.15384*(p*l^3))/(e*b*t^3);
Surf(v1, v2 , Gu);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Discrete Data Plots についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!