Click here to Skip to main content
15,917,320 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Is there any simple way to distribute Visual C++ 6.0 (work with DAO & MS Access 2000) Pin
Pavel Klocek9-Feb-03 23:01
Pavel Klocek9-Feb-03 23:01 
GeneralCListCtrl not visible within nested PropertySheet Pin
Bonnie29-Feb-03 14:35
Bonnie29-Feb-03 14:35 
GeneralRe: CListCtrl not visible within nested PropertySheet Pin
Roger Allen10-Feb-03 6:27
Roger Allen10-Feb-03 6:27 
Generalplease help !! multiple document/views Pin
Perseus9-Feb-03 12:45
Perseus9-Feb-03 12:45 
GeneralCalendar control Pin
ROK_RShadow9-Feb-03 12:41
ROK_RShadow9-Feb-03 12:41 
GeneralRe: Calendar control Pin
benjymous10-Feb-03 0:39
benjymous10-Feb-03 0:39 
GeneralAnyone have class similiar Pin
Brian Shifrin9-Feb-03 11:53
Brian Shifrin9-Feb-03 11:53 
GeneralComplex Equations... Pin
EnigmaticalShadow9-Feb-03 10:33
sussEnigmaticalShadow9-Feb-03 10:33 
Hi, is there a simple way to program complex equations in MFC AppWizard(exe)??? For the equation z = z^2 + c, where 'z' and 'c' is (r + i), I was able to program it like this:

//r2 and i2 the user gives the values for
//r and i are the 'x' and 'y' values on the complex plain
//r5 and i5 is the final 'z' value
r3 = (r2 * r2) + (-(i2 * i2));
i3 = (i2 * r2) + (i2 * r2);

r5 = r3 + r;
i5 = i3 + i;

r2 = r5;
i2 = i5;

I need the final answer in complex form (r + i) so I may be able to put those values back into the equation as 'r2' and 'i2'... I want a simpler way to do this so I can use bigger equations like:
z = ((z^5 + c)/(z^3 + z^2 + z + 1)) + sin(z)

Thanks...
GeneralRe: Complex Equations... Pin
markkuk9-Feb-03 10:48
markkuk9-Feb-03 10:48 
GeneralRe: Complex Equations... Pin
Anonymous9-Feb-03 11:39
Anonymous9-Feb-03 11:39 
GeneralRe: Complex Equations... Pin
EnigmaticalShadow9-Feb-03 16:14
sussEnigmaticalShadow9-Feb-03 16:14 
GeneralRe: Complex Equations... Pin
Steve Mayfield9-Feb-03 18:52
Steve Mayfield9-Feb-03 18:52 
GeneralRe: Complex Equations... Pin
9-Feb-03 20:15
suss9-Feb-03 20:15 
GeneralRe: Complex Equations... Pin
markkuk10-Feb-03 2:03
markkuk10-Feb-03 2:03 
GeneralRe: Complex Equations... Pin
EnigmaticalShadow10-Feb-03 6:45
sussEnigmaticalShadow10-Feb-03 6:45 
GeneralRe: Complex Equations... Pin
EnigmaticalShadow10-Feb-03 7:16
sussEnigmaticalShadow10-Feb-03 7:16 
GeneralDialog Box Question Pin
Paddy9-Feb-03 8:58
Paddy9-Feb-03 8:58 
GeneralRe: Dialog Box Question Pin
Nish Nishant9-Feb-03 9:05
sitebuilderNish Nishant9-Feb-03 9:05 
GeneralRe: Dialog Box Question Pin
Paddy9-Feb-03 9:55
Paddy9-Feb-03 9:55 
GeneralRe: Dialog Box Question Pin
Nish Nishant9-Feb-03 12:21
sitebuilderNish Nishant9-Feb-03 12:21 
Generalcrash with push_back for vector Pin
nss9-Feb-03 7:58
nss9-Feb-03 7:58 
GeneralRe: crash with push_back for vector Pin
Chris Losinger9-Feb-03 8:50
professionalChris Losinger9-Feb-03 8:50 
GeneralRe: crash with push_back for vector Pin
nss9-Feb-03 13:11
nss9-Feb-03 13:11 
GeneralRe: crash with push_back for vector Pin
Solomon Wu9-Feb-03 18:17
Solomon Wu9-Feb-03 18:17 
GeneralRe: crash with push_back for vector Pin
Jambolo9-Feb-03 21:55
Jambolo9-Feb-03 21:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.