5

彼、

私の質問は、このmatlab出力に関するものです:

>>model3.Mu

ans =

0.7677    -1.1755   -0.8956

-0.0100    0.0883    0.0235

0.0001    -0.0010   -0.0003

-0.0000    0.0000    0.0000

このデータを 4 桁以上の 4x3 マトリックスで表示するにはどうすればよいですか?

4

1 に答える 1

8

type at the matlab prompt:

>> help format

I think what you want to do is issue the command "FORMAT LONG" before you execute your script.

You can also print the matrix out to arbitrary precision using fprintf in a loop.

于 2010-02-22T14:59:12.237 に答える