search for: threshold_

Displaying 4 results from an estimated 4 matches for "threshold_".

Did you mean: threshold
2009 Jan 28
1
stack data sets
...cores_Data,row.name=FALSE,col.name=FALSE) Zero = 0 One = 1 for (t in 1:20) { for (s in 1:500) { if (Observed_Scores[s,t]<= thresh.values[t]) resp.prob[s,t] = Zero else resp.prob[s,t] = One } } ResponseData <- paste("ResponseMatrix_",k,".dat") ThreshData <- paste("Threshold_",k,".dat") write.table(resp.prob,ResponseData,row.name=FALSE,col.name=FALSE) write.table(thresh.values,ThreshData,row.name=FALSE,col.name=FALSE) #####STACKING ALL THE OUTPUTS######### CommonFile <- stack(resp.prob) ###################################### #Rounding upto 2 decimal...
2009 Jan 28
0
How to stack data sets?
...ta,row.name=FALSE,col.name=FALSE) Zero = 0 One = 1 for (t in 1:20) { for (s in 1:500) { if (Observed_Scores[s,t]<= thresh.values[t]) resp.prob[s,t] = Zero else resp.prob[s,t] = One } } ResponseData <- paste("ResponseMatrix_",k,".dat") ThreshData <- paste("Threshold_",k,".dat") write.table(resp.prob,ResponseData,row.name=FALSE,col.name=FALSE) write.table(thresh.values,ThreshData,row.name=FALSE,col.name=FALSE) #####STACKING ALL THE OUTPUTS######### CommonFile <- stack(resp.prob) ###################################### #Rounding upto 2 decima...
2013 Mar 14
1
[PATCH] x86/mce: Use MCG_CAP MSR to find out number of banks on AMD
...c b/arch/x86/kernel/cpu/mcheck/mce_amd.c index 1ac581f..cb7c739 100644 --- a/arch/x86/kernel/cpu/mcheck/mce_amd.c +++ b/arch/x86/kernel/cpu/mcheck/mce_amd.c @@ -33,7 +33,6 @@ #include <asm/mce.h> #include <asm/msr.h> -#define NR_BANKS 6 #define NR_BLOCKS 9 #define THRESHOLD_MAX 0xFFF #define INT_TYPE_APIC 0x00020000 @@ -57,9 +56,9 @@ static const char * const th_names[] = { "execution_unit", }; -static DEFINE_PER_CPU(struct threshold_bank * [NR_BANKS], threshold_banks); +static DEFINE_PER_CPU(struct threshold_bank **, threshold_banks); -static...
2009 Jan 28
2
t.test in a loop
Hi All, I've been having a little trouble with creating a loop that will run a a series of t.tests for inspection, Below is the code i've tried, and some checks i've looked at. I've used the get(paste()) idea as i was told previously that the use of the eval should try and be avoided. I've run a single syntax to check that my systax is correct and works without any problems