Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
About Me

A frustrated musician who loves British panel shows a lot more than anything on American television. Born in California, I've lived most of my life in Colorado, moving to Michigan at the age of 28 to finally pursue an engineering degree, hopefully at…

Interests
Music and composition, British television and comedy, science fiction and fantasy, movies and filmmaking.
PC Specs
AMD64 6000+ (3.2Ghz) dual-core processor 2GB DDR2 dual-channel RAM (800Mhz) 1 x 320GB SATA2 disk (tracking)…
Favorite Tags
Member Avatar for dmlandrum

I don't know how many C++ coders might be out there, but I've been trying to get this question answered about multiple inheritance. Say I have a class called B that inherits from A: A -> B Now, I create a class called C that, perhaps due to programmer unfamiliarity …

Member Avatar for grumpier
0
91
Member Avatar for dise652

[url]http://news.bbc.co.uk/1/hi/magazine/7540427.stm[/url] Discuss - Please stay on topic and no jibber jabber.

Member Avatar for sittas87
0
306
Member Avatar for dmlandrum

I'm trying to create a table of values based upon tanh(x) (nevermind the cubic function for the moment): [code=python]#!/usr/bin/python import math def cubic(y0, y1, y2, y3, mu): a0 = y3 - y2 - y0 + y1 a1 = y0 - y1 - a0 a2 = y2 - y0 a3 = …

Member Avatar for dmlandrum
0
112
Member Avatar for dmlandrum

... and I'm an alco- Sorry, wrong forum. ;) I'm a math nut and musical type person who is interested in creating some open-source synthesizers and samplers for Linux. The fact that I'm a rank beginner with C++ hasn't really entered my mind. Really, that's why I found this place, …

Member Avatar for sittas87
0
75
Member Avatar for dmlandrum

I'm trying to create a exception handling class for a large-ish project I'm working on which inherits from std::exception. I found this [url=http://www.cplusplus.com/doc/tutorial/exceptions.html]tutorial[/url] at cplusplus.com and followed its basic instructions and used its derived class as a template. Here is my Exception class as it stands right now: [code=C++]#include <exception> …

Member Avatar for dmlandrum
0
796