List functions on fprintf

1 次查看(过去 30 天)
How do you list something on fprintf? I want them in a column than kyou
  2 个评论
Jan
Jan 2011-10-31
And what do you want to appear in this list? Have you read "help fprintf" already?
Abra dog
Abra dog 2011-10-31
I have read fprintf but i'm still a little bit confused about it.
I want it to display two columns the first is numbers and the second is a string

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2011-10-31
fprintf('%10.2f\n', YourMatrix)
  3 个评论
Walter Roberson
Walter Roberson 2011-10-31
If you need to display a mix of numbers and strings on a single line, then you need to loop over each line. For example:
for K = 1:length(YourMatrix)
fprintf('%10.2f %s\n', YourMatrix(K), YourStrings(K,:));
end
Abra dog
Abra dog 2011-11-1
One more question when i tried your way for some reason it would repeat what i typed for my whole matrix did I do something wrong?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 String 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by