3D Plot in probability
이전 댓글 표시
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
darova
2020년 4월 20일
Do you have formulas or equations?
Rithwik Goud Salloori
2020년 4월 20일
편집: Rithwik Goud Salloori
2020년 4월 20일
darova
2020년 4월 20일
DO you have any attempts? The code?
Rithwik Goud Salloori
2020년 4월 20일
답변 (1개)
Aditya Mittal
2020년 4월 22일
0 개 추천
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);
카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!