Using the example on the help page:
library(gmp) x <- as.bigz(matrix(1:12,3)) apply(x,1,min) # Big Integer ('bigz') object of length 3: # [1] 1 2 3 apply(x,2,max) # Big Integer ('bigz') object of length 3: # [1] 10 11 12
The results should be:
x <- matrix(1:12,3) apply(x,1,min) # [1] 1 2 3 apply(x,2,max) # [1] 3 6 9 12
No one has answered this question yet.
See related questions:
Source: https://habr.com/ru/post/1236146/More articles:High Sierra + Python + Postgresql error: Invalid instruction: 4 - pythonHow to write pure HTML code, for example a tag in ERB? - htmlManage a rational number without loss of precision in Matlab? - matlabIllegal 4 instruction on Mac using C ++ - c ++Alamofire error after adding via Cocoapods - xcodeHow to fully download sound before playing? - javascriptClearing debounce on ng-model-options - angularjsRun screen on Xamarin.iOS not showing. A blue screen is displayed instead - iosiOS CBPeripheral Services not updating - iosPort my app from WatchOS1 to WatchOS2 - watchkitAll Articles