Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
juliohm committed Mar 5, 2018
1 parent 99d2478 commit 583e055
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/src/concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ iqsim(..., hard=well)

## Soft data

Given 3D `data` of size `(gridsizex, gridsizey, gridsizez)` and `dataTI` of size
`size(training_image)`, local relaxation can be performed with:
Given 3D data of the same size of the simulation grid (e.g. `seismic`) and data of the same
of the training image (e.g. `seismicTI`), local relaxation can be performed with:

```julia
# 3D seismic as auxiliary data
Expand All @@ -24,7 +24,7 @@ iqsim(..., soft=[(seismic,seismicTI)])
Multiple pairs of data can be passed as well:

```julia
iqsim(..., soft=[(data1,dataTI1), (data2,dataTI2), ...])
iqsim(..., soft=[(data₁,dataTI₁), (data₂,dataTI₂), ...])
```

## Masked grids
Expand All @@ -33,5 +33,5 @@ Masked grids are a special case of hard data conditioning where inactive voxels
marked with the value `NaN`. The algorithm handles this hard data differently as it
shouldn't be considered in the pattern similarity calculations.

`training_image` can also have inactive voxels marked with `NaN`. Convolution results
The training image can also have inactive voxels marked with `NaN`. Convolution results
are only looked up in active regions.

0 comments on commit 583e055

Please sign in to comment.