summaryrefslogtreecommitdiff
path: root/sms/sms.i
diff options
context:
space:
mode:
authorJohn Glover <john@john-glovers-macbook.local>2010-12-21 11:25:11 +0000
committerJohn Glover <john@john-glovers-macbook.local>2010-12-21 11:25:11 +0000
commit8373f12eaf63b6db27a1848202a86aeeb15c4d26 (patch)
tree4f00a58a2d9b4939ccc3225aa76d20570d793cc2 /sms/sms.i
parent3f5c5d34d99b121bb621230a918b621a9524a015 (diff)
downloadsimpl-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.i26
1 files changed, 26 insertions, 0 deletions
diff --git a/sms/sms.i b/sms/sms.i
index a61d4b8..afde07a 100644
--- a/sms/sms.i
+++ b/sms/sms.i
@@ -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 */