Displaying 1 result from an estimated 1 matches for "ortho_obs_use".
Did you mean:
ortho_obs_used
2010 Aug 11
3
Running something without a loop when the result from the previous iteration is require for the current iteration
...1 NA 1 NA
NA NA NA 1 NA 1 NA
NA NA NA 0 NA 0 NA
> num # station to generate
[1] 2
> use1 # 1st station to use in generation
[1] 6
> use2 # 2nd station to use in generation
[1] 4
> genmat = event.gen2(genmat,use1,use2,num,ortho_obs_used) # Generation
function shown below
> genmat # genmat - after it has gone through station 2
[,1] [,2] [,3] [,4] [,5] [,6] [,7]
line_before 1 1 1 0 1 1 1
NA 0 NA 1 NA 0 NA
NA 0 NA 0 NA 0 NA
NA...