How to displaying π instead of long decimal

9 次查看(过去 30 天)
if I have this simple matrix
x = [0:pi/30:pi/2]
How to print the elements with "π" Greek letter instead of long decimal .. Thank you
  4 个评论

请先登录,再进行评论。

回答(1 个)

Image Analyst
Image Analyst 2017-7-2
You mean like this:
% Start string with x= and a left bracket.
asciiPi = 112
str = sprintf('x = [');
% Add the 16 elements.
for k = 0 : 15
str = sprintf('%s%d*%c/30, ', str, k, 960);
end
% Get rid of trailing slash and add right bracket.
str = [str(1:end-2), ']']
  3 个评论
John D'Errico
John D'Errico 2017-7-3
编辑:John D'Errico 2017-7-3
Not really. MATLAB is a computational tool. Pi is just a number. Why worry about how it is displayed? About as much as you will do is this:
sym(pi)
ans =
pi

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by