+ fft is now supported for gdouble inputs.
+ grandn - GPU version of randn.
+ grand - GPU version of rand.
+ sort(X) is now supported.
+ cumsum(X) is now supported for vectors.
+ cumprod(X) is now supported for vectors.
+ permute, ipermute is now supported.
+ repmat is now supported for complex inputs.
+ The gcache command now allows users to manipulate the cache by flushing, saving or loading it.
+ The command 'ghelp' displays information about functions supported by Jacket on the MATLAB console:
- Features different from MATLAB's implementation of the function
- Supported syntax for the function
- Where relevant, whether a function can be used within a gfor loop.
+ mod and rem now have complex support.
+ xor support for float data types.
修正:
+ conv2(A,B,'same') with subscripted references to A and B now produces correct results.
+ dot(A,B) performed on 2D matrices now gives an error message instead of an incorrect result.
+ Fixed a rounding issue that caused cast to work incorrectly on gsingle-to-guint32 conversion.
+ isinteger now returns a single value for an array, instead of an array of values.
+ Fixed an issue in isfloat which was causing it to return incorrect results.
+ Sign no longer gives incorrect results for real gdouble data.
+ Fixed an issue where mod did not work similar to MATLAB.
+ Fixed an issue where rem returned incorrect results.
+ Subscripted assignments of the type A(B) = C now work for real A and complex C.
+ circshift no longer gives erroneous results with shifts greater than the dimension of the input.
+ atan2 and hypot no longer cause GPU failure for real inputs of different precision types.
+ repmat(A,M,N) now returns an error message if M and N are GPU variables.
+ Fixed a bug that caused assignments of the type A = B(1:N, to crash beyond a particular subscript N.