フィルターのクリア

Please help if you can

1 回表示 (過去 30 日間)
Milos Ivankovic
Milos Ivankovic 2012 年 2 月 28 日
Can you make matlab give answers in line with "ans = " , here is a photo(adress bellow text) of what i need , if this is possible please tell me how to do that. Thanks in advance http://imageshack.us/photo/my-images/28/42343019.jpg/
  1 件のコメント
Oleg Komarov
Oleg Komarov 2012 年 2 月 28 日
Do you need that just for customization or for other specific reasons?

サインインしてコメントする。

採用された回答

Oleg Komarov
Oleg Komarov 2012 年 2 月 29 日
It's not complicated to explain but it's quite annoying to implement. Have you tried my example in a comment to Sean's asnwer fprintf('\b %f',3)?
ans =
...
Is a message displayed (or printed) in the command window. To display something different from the standard behaviour requires you to use some specific functions that allow customization.
However, these functions (sprintf and fprintf) are not so flexible to adapt automatically to every situation while a consistent implementation of the customization would require to preserve the root formatting and to discriminate between variable types.
Thus you need to check the variable type and the root format, then you need to decline your customized formatting for each combination of the two above.
  3 件のコメント
Oleg Komarov
Oleg Komarov 2012 年 3 月 2 日
you can use sprintf or in fprintf('\b %f\n',3)
Milos Ivankovic
Milos Ivankovic 2012 年 3 月 5 日
I like this idea , thank you so much

サインインしてコメントする。

その他の回答 (3 件)

Sean de Wolski
Sean de Wolski 2012 年 2 月 28 日
  1 件のコメント
Oleg Komarov
Oleg Komarov 2012 年 2 月 28 日
fprintf('\b %f',3)
This option obviously doesn't consider the get(0,'format') in use and the type of variable.
Thus, as Walter says, it is possible but would require quite some coding, which honestly IMO is in general not justified (and specifically in this case, since the OP did not motivate the use of it).

サインインしてコメントする。


Walter Roberson
Walter Roberson 2012 年 2 月 28 日
It is possible in theory: you can overwrite the method named "display". Which can be a big nuisance to do, but it is possible.

Milos Ivankovic
Milos Ivankovic 2012 年 2 月 29 日
I wanted to brag to my professor :D but if it is too much trouble explaining then nevermind . Thank you :)
  2 件のコメント
Jan
Jan 2012 年 2 月 29 日
You can fake it by using "input('>> ', 's'); disp('ans = '); eval(S), input('>> ', 's');". I cannot check this currently, but it should look like a real command line output.
Milos Ivankovic
Milos Ivankovic 2012 年 3 月 1 日
I like the idea to fake it , but it says undefined function or variable S , maybe i didnt quite understand , so if you could explain please

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeDates and Time についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by