由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Computation版 - ft! Strange problem in Matlab!
相关主题
How to save variables in file in MATLABdifferent type of variable results difference in matlab
[合集] 请教matlab中数据存储的问题help on matrix problem
请问Matlab的输出请教:如何使C++计算得到的结果直接生成所需要的曲线图?
问个matlab矩阵的问题MatLab, 使用eval save每次都出现奇怪的11参数找不到?
Matlab 读取文件的问题计算中这样的bug!
matlab question: signum and absSTrange problem in Fortran programming
solve two variable nonlinear in matlabRe: pls help a list of optimization methods
about global in matlabMPI Write?
相关话题的讨论汇总
话题: matlab话题: d1话题: d2话题: i1话题: i3
进入Computation版参与讨论
1 (共1页)
Y********x
发帖数: 322
1
I used the follows statements to save some variables:
save mydata.txt I1 I2 I3 D1 D2 I4 I5 I6 -ascii -append;
I1,I2,I3,I4,I5,I6 are integer values and D1,D2 are double types.
In one machine, the variables are properly saved in this order; But when I r
un the program in another machine, the order of the data saved are as follow
s:
D1 D2 I1 I2 I3 I4 I5 I6.
FT!!! What the hell is the problem? I could not believe
my eyes! Anybody has clue on this super bizarre problem?
j**u
发帖数: 6059
2
有点奇怪,你减少存的变量看看。

r
follow

【在 Y********x 的大作中提到】
: I used the follows statements to save some variables:
: save mydata.txt I1 I2 I3 D1 D2 I4 I5 I6 -ascii -append;
: I1,I2,I3,I4,I5,I6 are integer values and D1,D2 are double types.
: In one machine, the variables are properly saved in this order; But when I r
: un the program in another machine, the order of the data saved are as follow
: s:
: D1 D2 I1 I2 I3 I4 I5 I6.
: FT!!! What the hell is the problem? I could not believe
: my eyes! Anybody has clue on this super bizarre problem?

p*****e
发帖数: 310
3
could you post a script for testing your case?

r
follow

【在 Y********x 的大作中提到】
: I used the follows statements to save some variables:
: save mydata.txt I1 I2 I3 D1 D2 I4 I5 I6 -ascii -append;
: I1,I2,I3,I4,I5,I6 are integer values and D1,D2 are double types.
: In one machine, the variables are properly saved in this order; But when I r
: un the program in another machine, the order of the data saved are as follow
: s:
: D1 D2 I1 I2 I3 I4 I5 I6.
: FT!!! What the hell is the problem? I could not believe
: my eyes! Anybody has clue on this super bizarre problem?

Y********x
发帖数: 322
4
It is a very large program.
The problem was incurred by different matlab versions, I guess. I will try t
o figure it out using some simple numerical
studies.

【在 p*****e 的大作中提到】
: could you post a script for testing your case?
:
: r
: follow

Y********x
发帖数: 322
5
I know why now.
In Matlab 7 (released in 2004 or so), the variables are saved
alphabitically according to the variable name. While in the
most recent Matlab, they are saved in the order you specified
in the save statement.

【在 j**u 的大作中提到】
: 有点奇怪,你减少存的变量看看。
:
: r
: follow

j**u
发帖数: 6059
6

好奇怪呀,原来还有这么一说。

【在 Y********x 的大作中提到】
: I know why now.
: In Matlab 7 (released in 2004 or so), the variables are saved
: alphabitically according to the variable name. While in the
: most recent Matlab, they are saved in the order you specified
: in the save statement.

1 (共1页)
进入Computation版参与讨论
相关主题
MPI Write?Matlab 读取文件的问题
core dumpedmatlab question: signum and abs
How to read data written my MPI_WRITE?solve two variable nonlinear in matlab
mathematica如何对变量赋值?about global in matlab
How to save variables in file in MATLABdifferent type of variable results difference in matlab
[合集] 请教matlab中数据存储的问题help on matrix problem
请问Matlab的输出请教:如何使C++计算得到的结果直接生成所需要的曲线图?
问个matlab矩阵的问题MatLab, 使用eval save每次都出现奇怪的11参数找不到?
相关话题的讨论汇总
话题: matlab话题: d1话题: d2话题: i1话题: i3