Displaying 2 results from an estimated 2 matches for "halo2".
Did you mean:
hal2
2008 May 18
1
Halo2 and msvc issues
...ing assembly
An attempt to extract the supplied vcredis1.cab gives me a file named FL_msdia71_dll_2_____X86.3643236F_FC70_11D3_A536_0090278A1BB8. Ugh. This file isn't even executable, it's a lib. Let's just skip this msi for now.
Ok, continuing, I tried to execute the Loader.exe with halo2.exe as an argument (like in the original bat file). This fails miserably.
Code:
err:module:import_dll Library MSVCR80.dll (which is needed by L"C:\\windows\\system32\\xlive.dll") not found
err:module:import_dll Library MSVCP80.dll (which is needed by L"C:\\windows\\system32\\xlive.d...
2012 Jan 28
0
Graph Titles
...ng me crazy:
> I have a for loop that loops through a matrix and pulls data from two
> different variables, computes differences and runs a regression then plots
> a formula I made:
>
> for(i in 1:1){
> halo <- sex[i,]
> holder <- get(halo)['2011::'][,6]
> halo2 <- sex[i,2]
> holder2 <- get(halo2)['2011::'][,6]
> ret1<- diff(holder)[-1]
> ret2<- diff(holder2)[-1]
> model<- lm(ret1 ~ ret2 - 1)
> hr <- as.numeric(model$coefficients[1])
> pairs <- ret1 - hr * ret2
> plot(pairs)
> }
>
> The loop works...