[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: Some with two different version of matlab installed?
From: |
Hall, Benjamin |
Subject: |
RE: Some with two different version of matlab installed? |
Date: |
Fri, 11 May 2007 13:21:27 -0400 |
Could someone help me out with a small test, that needs access to two
difference versions of matlab? Unfortunately I only have v7.3 installed.
...
****************************************************************************
<launch Matlab version 1>
Matlab 7.4.0 (R2007a)
f = @sprandn
save -v6 test.mat f
functions(f)
matlabroot
quit
>> f = @sprandn
save -v6 test.mat f
functions(f)
matlabroot
f =
@sprandn
ans =
function: 'sprandn'
type: 'simple'
file: [1x63 char]
ans =
K:\test\Wnt\math\matlab\R2007a
****************************************************************************
<launch Matlab version 2>
Matlab 7.3.0 (R2006b)
load test.mat
functions(f)
matlabroot
quit
>> load test.mat
>> functions(f)
ans =
function: 'sprandn'
type: 'simple'
file: [1x63 char]
>> matlabroot
ans =
K:\test\Wnt\math\matlab\R2006b
****************************************************************************