~ubuntu-branches/ubuntu/hardy/suitesparse/hardy

« back to all changes in this revision

Viewing changes to CXSparse/MATLAB/CSparse/cs_mex.c

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere, Rafael Laboissiere, Ondrej Certik
  • Date: 2008-02-21 14:46:50 UTC
  • mfrom: (1.1.2 upstream) (5.1.1 hardy)
  • Revision ID: james.westby@ubuntu.com-20080221144650-tgeppgj0t7s759i8
Tags: 3.1.0-3
[ Rafael Laboissiere ]
* Upload to unstable

[ Ondrej Certik ]
* XS-DM-Upload-Allowed: yes field added
* Ondrej Certik added to uploaders

Show diffs side-by-side

added added

removed removed

Lines of Context:
192
192
/* get a real or complex MATLAB dense column vector, and copy to cs_complex_t */
193
193
cs_complex_t *cs_cl_mex_get_double (CS_INT n, const mxArray *X)
194
194
{
195
 
    CS_INT k ;
196
195
    cs_mex_check (0, n, 1, 0, 0, 1, X) ;
197
196
    return (cs_cl_get_vector (n, n, X)) ;
198
197
}