Opened 16 years ago
Last modified 16 years ago
#732 closed defect
Some basic function of VMatrix do not work properly with Cholmod.R.Sparse type — at Initial Version
Reported by: | César Pérez Álvarez | Owned by: | Víctor de Buen Remiro |
---|---|---|---|
Priority: | highest | Milestone: | Mantainance |
Component: | Kernel | Version: | 1.1.7 |
Severity: | blocker | Keywords: | |
Cc: |
Description
If we run this code:
Matrix a = SetCol(1,2,3,0,0?);
VMatrix va = Convert(Mat2VMat(a), "Cholmod.R.Sparse");
VMatrix zero = Zeros(VRows(va), 1);
VMatrix proof_1 = va-1;
VMatrix proofNot = Not(zero);
VMatrix proofGT = GT(va, zero);
VMatrix proofLE = LE(va, zero);
and view last four VMatrix, functions do not work.
With Blas.R.Dense function run ok. I did not proof with another types.
Note: See
TracTickets for help on using
tickets.