필터 지우기
필터 지우기

How to add a result on a plot.

조회 수: 2 (최근 30일)
Alexandros Anastasakos
Alexandros Anastasakos 2017년 11월 27일
댓글: KL 2017년 11월 27일
I have made a program that calculates the root of a function. I want to have text saying "the root of the function is at x=(result calculated by program) on the plot. I am using the text command to print the message where I want but I don't know how to print the result itself on plot. Can someone help me?

채택된 답변

KL
KL 2017년 11월 27일
use num2str to convert the result to string and use it inside text command,
text(x_pos, y_pos, ['the root of the function is at x = ', num2str(result)])
  댓글 수: 2
Alexandros Anastasakos
Alexandros Anastasakos 2017년 11월 27일
Thank you. I realize this is a pretty basic question but i am a beginner and couldn't really work it out myself.
KL
KL 2017년 11월 27일
You're welcome, glad to help.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by