필터 지우기
필터 지우기

Show equation on the 3D Plot

조회 수: 3 (최근 30일)
Samir Albadri
Samir Albadri 2020년 8월 15일
편집: Walter Roberson 2023년 5월 26일
Greeting All
Can I get multiple regression equation in matlab code and show the equation on the 3D Plot.
I ihave three axeis X, Y , and Z.
Best regards
Samir
  댓글 수: 2
Walter Roberson
Walter Roberson 2020년 8월 16일
text() can be passed x, y, and z coordinates to place text at.
But more common would be to create a character form of the equation and title() it.
Samir Albadri
Samir Albadri 2020년 8월 16일
Thanks for your quick replay.
What I need is to get the multiple regression equation from the data by using a code for that and then show it on the 3D plot.
Regards

댓글을 달려면 로그인하십시오.

채택된 답변

Prabhanjan Mentla
Prabhanjan Mentla 2020년 8월 18일
Hi,
I assume the question needs two things one is getting the equation and then plotting on to the figure.
Multilinear regression (3d plot) may be solved using code in this link.
The below code can be added in the above link(after zlabel) to get figure title.
caption = sprintf('y = %f + %f * x1 + %f * x2 + %f * x1*x2', b(1),b(2),b(3),b(4));
text(15,185,45, caption, 'FontSize', 10, 'Color', 'r', 'FontWeight', 'bold');
You may get similar type of figure like below.
Hope this helps.

추가 답변 (1개)

Samir Albadri
Samir Albadri 2020년 8월 20일
Hello
I attach the code. I used. I tried what you recomended but for somehow it did not work
Can you see it
Thanks in advance

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by