Click here to Skip to main content
15,895,557 members
Home / Discussions / C#
   

C#

 
QuestionRead and copy .docx Pin
Xtrme_XJ9-Jan-09 8:23
Xtrme_XJ9-Jan-09 8:23 
Questionunisgned integers and global cases in C# Pin
Xarzu9-Jan-09 7:54
Xarzu9-Jan-09 7:54 
AnswerRe: unisgned integers and global cases in C# Pin
Eddy Vluggen9-Jan-09 8:24
professionalEddy Vluggen9-Jan-09 8:24 
AnswerRe: unisgned integers and global cases in C# Pin
JByrd20069-Jan-09 9:02
JByrd20069-Jan-09 9:02 
AnswerRe: unisgned integers and global cases in C# Pin
Guffa9-Jan-09 17:52
Guffa9-Jan-09 17:52 
Questionany body idea in viterbi algorithm Pin
lawrenceinba9-Jan-09 7:39
lawrenceinba9-Jan-09 7:39 
AnswerRe: any body idea in viterbi algorithm Pin
Christian Graus9-Jan-09 7:46
protectorChristian Graus9-Jan-09 7:46 
GeneralRe: any body idea in viterbi algorithm Pin
lawrenceinba9-Jan-09 8:00
lawrenceinba9-Jan-09 8:00 
dear friend
i spent time and studied.. but these lines i don understand the logic... can u help me pls
if (v_prob > valMax)
{
valMax = v_prob;
argMax = nextState;
}

Console.WriteLine(" VProbability of {0} is {1} with scale {2}^{3}", states[nextState], v_prob, scaleFactor, output + 1);

if (v_prob > highest)
{
highest = v_prob;
vPath[output] = nextState;
vProbs[output] = v_prob;
}
}

U[nextState, 0] = total;
U[nextState, 1] = argMax;
U[nextState, 2] = valMax;
}
T = U;
Console.WriteLine("The highest probability was {0} in state {1} (scale factor of {2}^{3})", highest, states[vPath[output]], scaleFactor, output + 1);
}


//Apply SumMax
double Total = 0;
double ValMax = 0;

for (int state = 0; state < states.Length; state++)
{
double prob = T[state, 0];
double v_path = T[state, 1];
double v_prob = T[state, 2];

the quieter u become more u hear

AnswerRe: any body idea in viterbi algorithm Pin
EliottA9-Jan-09 8:01
EliottA9-Jan-09 8:01 
GeneralRe: any body idea in viterbi algorithm Pin
Luc Pattyn9-Jan-09 8:20
sitebuilderLuc Pattyn9-Jan-09 8:20 
GeneralRe: any body idea in viterbi algorithm Pin
Eddy Vluggen9-Jan-09 8:40
professionalEddy Vluggen9-Jan-09 8:40 
GeneralRe: any body idea in viterbi algorithm Pin
Luc Pattyn9-Jan-09 9:55
sitebuilderLuc Pattyn9-Jan-09 9:55 
GeneralRe: any body idea in viterbi algorithm Pin
Eddy Vluggen9-Jan-09 11:03
professionalEddy Vluggen9-Jan-09 11:03 
QuestionHow to export a bitmap from a crystal report? Pin
davebarkshire9-Jan-09 6:00
davebarkshire9-Jan-09 6:00 
AnswerRe: How to export a bitmap from a crystal report? Pin
DaveyM699-Jan-09 7:11
professionalDaveyM699-Jan-09 7:11 
GeneralRe: How to export a bitmap from a crystal report? Pin
c0ax_lx12-Jan-09 2:02
c0ax_lx12-Jan-09 2:02 
GeneralRe: How to export a bitmap from a crystal report? Pin
DaveyM6912-Jan-09 6:31
professionalDaveyM6912-Jan-09 6:31 
GeneralRe: How to export a bitmap from a crystal report? Pin
c0ax_lx12-Jan-09 22:17
c0ax_lx12-Jan-09 22:17 
GeneralRe: How to export a bitmap from a crystal report? Pin
DaveyM6913-Jan-09 1:13
professionalDaveyM6913-Jan-09 1:13 
GeneralRe: How to export a bitmap from a crystal report? Pin
DaveyM6913-Jan-09 1:14
professionalDaveyM6913-Jan-09 1:14 
QuestionHow to play flash Pin
Sokka939-Jan-09 5:59
Sokka939-Jan-09 5:59 
AnswerRe: How to play flash Pin
EliottA9-Jan-09 6:11
EliottA9-Jan-09 6:11 
GeneralRe: How to play flash Pin
scottgp9-Jan-09 6:27
professionalscottgp9-Jan-09 6:27 
GeneralRe: How to play flash Pin
EliottA9-Jan-09 6:29
EliottA9-Jan-09 6:29 
GeneralRe: How to play flash Pin
scottgp9-Jan-09 6:38
professionalscottgp9-Jan-09 6:38 

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.