diff options
author | John Glover <john@john-glovers-macbook.local> | 2010-12-21 11:25:11 +0000 |
---|---|---|
committer | John Glover <john@john-glovers-macbook.local> | 2010-12-21 11:25:11 +0000 |
commit | 8373f12eaf63b6db27a1848202a86aeeb15c4d26 (patch) | |
tree | 4f00a58a2d9b4939ccc3225aa76d20570d793cc2 /sms/sms.i | |
parent | 3f5c5d34d99b121bb621230a918b621a9524a015 (diff) | |
download | simpl-8373f12eaf63b6db27a1848202a86aeeb15c4d26.tar.gz simpl-8373f12eaf63b6db27a1848202a86aeeb15c4d26.tar.bz2 simpl-8373f12eaf63b6db27a1848202a86aeeb15c4d26.zip |
Fixing bugs in SMSResidual.
Diffstat (limited to 'sms/sms.i')
-rw-r--r-- | sms/sms.i | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -500,6 +500,32 @@ } } +%extend SMS_ResidualParams +{ + void getResidual(int sizeArray, sfloat *pArray) + { + if(sizeArray < $self->residualSize) + { + sms_error("numpy array not big enough"); + return; + } + int i; + for(i = 0; i < $self->residualSize; i++) + pArray[i] = $self->residual[i]; + } + void getApprox(int sizeArray, sfloat *pArray) + { + if(sizeArray < $self->nCoeffs) + { + sms_error("numpy array not big enough"); + return; + } + int i; + for(i = 0; i < $self->nCoeffs; i++) + pArray[i] = $self->approxEnvelope[i]; + } +} + %extend SMS_ModifyParams { /* no need to return an error code, if sms_error is called, it will throw an exception in python */ |