How to take value from function and put it into disp script?

2 次查看(过去 30 天)
My task is to "display the words: 'The ball hits the ground at a distance of X meters', where X is the hitDistance from the function throwBallFunc." (I have written the throwBallFunc).
So far, I have disp( ' The ball hits the ground at a distance of %d meters '); which is not working. How do I write it so that I can get the value of X aka hitDistance from the function throwBallFunc that I created? Thank you!

采纳的回答

Star Strider
Star Strider 2019-9-28
Use:
sprintf( ' The ball hits the ground at a distance of %d meters ',X)
or:
fprintf( ' The ball hits the ground at a distance of %d meters ', X)
instead, depending on what you want to do.
  2 个评论
Star Strider
Star Strider 2019-9-28
Yopu didn’t say that.
Try this:
disp([' The ball hits the ground at a distance of ' num2str(X) ' meters '])
That worked when I tested it. It uses the MATLAB concatenation operator [] to create one character array from three character arrays.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by