-
perhaps the warning regarding pathtool on install can be moved to release notes? It has been several versions since the behaviour in question changed.
2008-08-06 02:43:14 UTC in FreeMat
-
It would be good if the gui could properly handle pathnames with spaces. At the moment it just refuses to deal with these properly.
2008-08-06 02:41:18 UTC in FreeMat
-
The default editor font (probably only on ms windows), causes a warning every time a new document is opened.
It would be good to set the default font to something sensible (or suppress the error, since it doesn't seem to actually break anything).
2008-08-04 23:42:43 UTC in FreeMat
-
It would be useful to have the option of one-touch save/run, rather than separate save & run keys.
2008-08-04 23:40:29 UTC in FreeMat
-
actually my suggested modification to colorbar causes very long delays for wider numbers on the axis (e.g. 1e-100 and so on), presumably something to do with overrunning the edge of the window.
Some ways to get around this:
1) make the colorbar outerposition wider (but it is too wide already)
2) pass a proportionally narrow range in as xdata and use axis image
The layout generally looks...
2007-10-07 06:32:07 UTC in FreeMat
-
actually my suggested modification to colorbar causes very long delays for wider numbers on the axis (e.g. 1e-100 and so on), presumably something to do with overrunning the edge of the window.
Some ways to get around this:
1) make the colorbar outerposition wider (but it is too wide already)
2) pass a proportionally narrow range in as xdata and use axis image
The layout generally looks...
2007-10-07 06:31:30 UTC in FreeMat
-
--> x=rand(4,2)+i*rand(4,2)
x =
0.7247 + 0.5337i 0.1271 + 0.7827i
0.6626 + 0.3818i 0.1812 + 0.8188i
0.5490 + 0.9192i 0.2701 + 0.4927i
0.3029 + 0.1298i 0.1946 + 0.0169i
--> y=rand(2,2)+i*rand(2,2)
y =
0.8178 + 0.2623i 0.7881 + 0.4163i
0.3912 + 0.3493i 0.9691 + 0.0445i
--> x(2:2:4,:)=y
x =
0.7247 + 0.5337i...
2007-10-06 10:54:22 UTC in FreeMat
-
the exponent of complex number displays is sometimes incorrect, e.g.
--> 3e-2+i*4e-3
ans =
3.0000e+000 +4.0000e-001i
(looks like it is trying to normalize against the larger exponent?)
2007-10-06 10:35:05 UTC in FreeMat
-
colorbar can be fixed like this:
%han = himage('cdata',flipud(cmap));
han = himage('ydata',get(axhan,'clim'),'cdata',flipud(cmap));
axis('tight');.
2007-10-06 01:59:30 UTC in FreeMat
-
image & imagesc can be fixed by changing image.m thus:
%handle = himage('xdata',x,'ydata',y,'cdata',C,varargin{:});
handle = himage('xdata',x([1,end]),'ydata',y([1,end]),'cdata',C,varargin{:});
%axis(ax,'image');.
2007-10-06 01:31:53 UTC in FreeMat