Dimensions of return values from eprload and esfit
Dimensions of return values from eprload and esfit
The function eprload returns x and y values in different dimensions. The x values return as <1 x nPoints double> whereas y ones return as <nPoints x 1 double>. Moreover, esfit returns y values as <1 x nPoints double>, it makes certain inconvenience.
-
- EasySpin Guru
- Posts: 155
- Joined: Tue Jul 22, 2014 11:01 am
- Location: Northwestern University
Re: Dimensions of return values from eprload and esfit
That is a minor bug that will get fixed in the next update. In general EasySpin should output row vectors. One easy work around is to either force everything into a column or ensure everything is a row by using
(:)
such as:Code: Select all
[x,y] = eprload;
% shift the data into column
x=x(:);
y=y(:);
% or force a row vector
x=x(:).';
y=y(:).';
Re: Dimensions of return values from eprload and esfit
Thanks. I used reshape function to override this inconvenience.