MATLAB is a high-level language and interactive programming environment for numerical computation and visualization developed by MathWorks.

learn more… | top users | synonyms

2
votes
3answers
207 views
+50

slower to mix logical variables with double?

I have 0-1 valued vectors that I need to do some matrix operations on. They are not very sparse (only half of the values are 0) but saving them as a logical variable instead of double saves 8 times ...
18
votes
0answers
159 views
+50

matlab - How to get int64 from a Java method returning a long?

According to Matlab documentation, when a Java method returns a long, it is converted to a double before being assigned in Matlab. Precision has been lost. I am interested in the lower digits of the ...