LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
getJSIMTempPath.m
1function out = getJSIMTempPath(self)
2% OUT = GETJSIMTEMPPATH()
3
4if isempty(self.filePath) || isempty(self.fileName)
5 self.filePath = lineTempName('jsim');
6 self.fileName = 'model';
7end
8fname = [self.fileName,'.jsim'];
9out = [self.filePath,filesep,fname];
10end