Serving the Quantitative Finance Community

Search found 4 matches

by chaenle
April 11th, 2006, 12:52 pm
Forum: Programming and Software Forum
Topic: Excel drop menu using XLL - XLW
Replies: 6
Views: 115374

Excel drop menu using XLL - XLW

<r>Download the macro function help file from Microsoft (<URL url="http://support.microsoft.com/kb/128185/EN-US/">http://support.microsoft.com/kb/128185/EN-US/</URL>), then open the Macrofun.hlp, go to "Contents", then "Macro functions listed by category" and then "Customizing". Read up on function ...
by chaenle
April 11th, 2006, 12:39 pm
Forum: Programming and Software Forum
Topic: Virtual destructor question
Replies: 5
Views: 111035

Virtual destructor question

<r>Declaring A* a = new Band calling a->f() results in a call to A::f if f is non-virtual, even if B overrides f.A destructor is little more than a member function ("operator~()") that also calls its base class(es) member functions. operator~() is called automatically upon delete or when an object g...
by chaenle
April 11th, 2006, 7:08 am
Forum: Programming and Software Forum
Topic: Virtual destructor question
Replies: 5
Views: 111035

Virtual destructor question

<t>> A* a = new B;> delete a; >> In this case the dtor for A will be called and B's dtor won't be called and we have a memory leak. So, the point of making dtor in A > virtual is to call the dtor in B and then dtor in A? Is that correct? That's correct, only A's destructor is called. This need not n...
by chaenle
April 10th, 2006, 4:04 pm
Forum: Programming and Software Forum
Topic: Looking for a C# Matrix Library
Replies: 6
Views: 120277

Looking for a C# Matrix Library

<t>Hi, I'm looking for a .NET matrix library that is both functionally rich, easy to use from C# and fast. I have had a look at the following libraries:.NET Matrix Library (NML 2.2) by Bluebit SoftwareNMath by CenterSpace SoftwareMath.NET by Christoph Daniel Ruegg.NET Builder for Matlab by The MathW...