Click here to Skip to main content
15,899,679 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: VC++ Pin
Rajesh R Subramanian30-Mar-09 20:43
professionalRajesh R Subramanian30-Mar-09 20:43 
QuestionHow to reduce .avi file size.. Pin
tns_ranjith30-Mar-09 20:31
tns_ranjith30-Mar-09 20:31 
AnswerRe: How to reduce .avi file size.. Pin
Rajesh R Subramanian30-Mar-09 20:40
professionalRajesh R Subramanian30-Mar-09 20:40 
QuestionHow to get ordinal value of function programitically ? Pin
MANISH RASTOGI30-Mar-09 20:29
MANISH RASTOGI30-Mar-09 20:29 
Questioncan somebody help me to solve this problem? Pls help me, as soon as possible. This is a numerical method question. Pin
Sunther30-Mar-09 20:02
Sunther30-Mar-09 20:02 
AnswerRe: can somebody help me to solve this problem? Pls help me, as soon as possible. This is a numerical method question. Pin
Stuart Dootson30-Mar-09 20:20
professionalStuart Dootson30-Mar-09 20:20 
AnswerRe: can somebody help me to solve this problem? Pls help me, as soon as possible. This is a numerical method question. Pin
Rajesh R Subramanian30-Mar-09 20:30
professionalRajesh R Subramanian30-Mar-09 20:30 
AnswerRe: can somebody help me to solve this problem? Pls help me, as soon as possible. This is a numerical method question. Pin
Member 43208446-Nov-11 22:09
Member 43208446-Nov-11 22:09 
Hi

If this is your problem:

VB
   2x1-x2=1     ...................[1]
-xi+2xi+1=0, i=1,2,.....,n-2. .....[2]
-xn-1+2xn=1  ......................[3]

solution:

from [1] you get:

x(2)= 2*x(1)-1
from [3] you get:

x(n-1) = 2*x(n) -1

from [2] you get:
VB
 n= ? : rem n value should be set

 for j=1 to 50
 rem  50 is max iterations set to.

 for i=1 to n-2
  if i=2 then
   x(2)= 2*x(1)-1
  end if

  x(i)= 2*x(i+1)

 next i
  x(n-1) = 2*x(n) -1
next j

Remark: I hope I understood your problem, since the solution
correctness depends on that too.
If your your problem is not stated correctly, that
belongs to you.
I hope that I helped, if you need more let me know.
Questionsystem() parameter complications Pin
gamefreak229130-Mar-09 19:49
gamefreak229130-Mar-09 19:49 
AnswerRe: system() parameter complications Pin
Stuart Dootson30-Mar-09 20:18
professionalStuart Dootson30-Mar-09 20:18 
GeneralRe: system() parameter complications Pin
gamefreak229130-Mar-09 21:32
gamefreak229130-Mar-09 21:32 
GeneralRe: system() parameter complications Pin
Stuart Dootson30-Mar-09 21:57
professionalStuart Dootson30-Mar-09 21:57 
QuestionProblem with WinDef.h Pin
T.RATHA KRISHNAN30-Mar-09 18:44
T.RATHA KRISHNAN30-Mar-09 18:44 
AnswerRe: Problem with WinDef.h Pin
gamefreak229130-Mar-09 19:53
gamefreak229130-Mar-09 19:53 
QuestionRe: Problem with WinDef.h Pin
T.RATHA KRISHNAN30-Mar-09 20:26
T.RATHA KRISHNAN30-Mar-09 20:26 
Questionrectangle rotation Pin
Member 337533430-Mar-09 13:15
Member 337533430-Mar-09 13:15 
AnswerRe: rectangle rotation Pin
Stuart Dootson30-Mar-09 14:57
professionalStuart Dootson30-Mar-09 14:57 
GeneralRe: rectangle rotation Pin
Member 337533430-Mar-09 16:41
Member 337533430-Mar-09 16:41 
GeneralRe: rectangle rotation Pin
Stuart Dootson30-Mar-09 20:16
professionalStuart Dootson30-Mar-09 20:16 
AnswerRe: rectangle rotation Pin
Iain Clarke, Warrior Programmer1-Apr-09 1:07
Iain Clarke, Warrior Programmer1-Apr-09 1:07 
QuestionUsing DirectSound and Synthesis toolkit in Visual Studio [modified] Pin
someguy16430-Mar-09 12:46
someguy16430-Mar-09 12:46 
QuestionFiltering processes of current user Pin
Moak30-Mar-09 8:20
Moak30-Mar-09 8:20 
AnswerRe: Filtering processes of current user Pin
Code-o-mat30-Mar-09 8:43
Code-o-mat30-Mar-09 8:43 
GeneralRe: Filtering processes of current user Pin
Moak30-Mar-09 12:10
Moak30-Mar-09 12:10 
GeneralRe: Filtering processes of current user Pin
Code-o-mat30-Mar-09 21:06
Code-o-mat30-Mar-09 21:06 

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.