diff --git a/interfaces/matlab/toolbox/@ThermoPhase/private/phase_get.m b/interfaces/matlab/toolbox/@ThermoPhase/private/phase_get.m index 0d963e4b61..0a2d17e6d3 100644 --- a/interfaces/matlab/toolbox/@ThermoPhase/private/phase_get.m +++ b/interfaces/matlab/toolbox/@ThermoPhase/private/phase_get.m @@ -1,8 +1,8 @@ function i = phase_get(n, job, a, b) if nargin == 2 - i = ctmethods(30,n,job); + i = ctmethods(30, n, job); elseif nargin == 3 - i = ctmethods(30,n,job,a); + i = ctmethods(30, n, job, a); else i = ctmethods(30, n, job, a, b); end \ No newline at end of file diff --git a/interfaces/matlab/toolbox/@ThermoPhase/private/phase_set.m b/interfaces/matlab/toolbox/@ThermoPhase/private/phase_set.m index 0ce4e90103..7c5b9bb602 100644 --- a/interfaces/matlab/toolbox/@ThermoPhase/private/phase_set.m +++ b/interfaces/matlab/toolbox/@ThermoPhase/private/phase_set.m @@ -1,8 +1,8 @@ function phase_set(n, job, a, b) if nargin == 2 - ctmethods(30,n,-job); + ctmethods(30, n, -job); elseif nargin == 3 - ctmethods(30,n,-job,a); + ctmethods(30, n, -job, a); else ctmethods(30, n,-job, a, b); end \ No newline at end of file diff --git a/interfaces/matlab/toolbox/@ThermoPhase/private/thermo_set.m b/interfaces/matlab/toolbox/@ThermoPhase/private/thermo_set.m index 516f1c4a65..6377c4bc05 100644 --- a/interfaces/matlab/toolbox/@ThermoPhase/private/thermo_set.m +++ b/interfaces/matlab/toolbox/@ThermoPhase/private/thermo_set.m @@ -1,16 +1,16 @@ function i = thermo_set(n, job, a, b, c, d, e, f) if nargin == 2 - i = ctmethods(20,n,-job); + i = ctmethods(20, n, -job); elseif nargin == 3 - i = ctmethods(20,n,-job,a); + i = ctmethods(20, n, -job,a); elseif nargin == 4 - i = ctmethods(20, n,-job, a, b); + i = ctmethods(20, n, -job, a, b); elseif nargin == 5 - i = ctmethods(20, n,-job, a, b, c); + i = ctmethods(20, n, -job, a, b, c); elseif nargin == 6 - i = ctmethods(20, n,-job, a, b, c, d); + i = ctmethods(20, n, -job, a, b, c, d); elseif nargin == 7 - i = ctmethods(20, n,-job, a, b, c, d, e); + i = ctmethods(20, n, -job, a, b, c, d, e); elseif nargin == 8 - i = ctmethods(20, n,-job, a, b, c, d, e, f); + i = ctmethods(20, n, -job, a, b, c, d, e, f); end \ No newline at end of file