Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MRIBuilder.jl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michiel Cottaar
MRIBuilder.jl
Commits
c67ba627
Verified
Commit
c67ba627
authored
11 months ago
by
Michiel Cottaar
Browse files
Options
Downloads
Patches
Plain Diff
Remove linearise
parent
047ce799
No related branches found
No related tags found
No related merge requests found
Pipeline
#23621
passed
11 months ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/MRIBuilder.jl
+2
-2
2 additions, 2 deletions
src/MRIBuilder.jl
src/containers/containers.jl
+0
-2
0 additions, 2 deletions
src/containers/containers.jl
with
2 additions
and
4 deletions
src/MRIBuilder.jl
+
2
−
2
View file @
c67ba627
...
@@ -27,8 +27,8 @@ export variables, duration, effective_time, flip_angle, amplitude, phase, freque
...
@@ -27,8 +27,8 @@ export variables, duration, effective_time, flip_angle, amplitude, phase, freque
import
.
Components
:
InstantPulse
,
ConstantPulse
,
SincPulse
,
GenericPulse
,
InstantGradient
,
SingleReadout
,
ADC
import
.
Components
:
InstantPulse
,
ConstantPulse
,
SincPulse
,
GenericPulse
,
InstantGradient
,
SingleReadout
,
ADC
export
InstantPulse
,
ConstantPulse
,
SincPulse
,
GenericPulse
,
InstantGradient
,
SingleReadout
,
ADC
export
InstantPulse
,
ConstantPulse
,
SincPulse
,
GenericPulse
,
InstantGradient
,
SingleReadout
,
ADC
import
.
Containers
:
ContainerBlock
,
start_time
,
end_time
,
waveform
,
waveform_sequence
,
events
,
BaseBuildingBlock
,
BuildingBlock
,
Wait
,
BaseSequence
,
nrepeat
,
Sequence
,
AlternativeBlocks
,
match_blocks!
,
get_index_single_TR
,
readout_times
,
edge_times
,
SequencePart
,
split_times
,
split_timestep
,
LinearSequence
,
iter_blocks
,
iter_instant_gradients
,
iter_instant_pulses
import
.
Containers
:
ContainerBlock
,
start_time
,
end_time
,
waveform
,
waveform_sequence
,
events
,
BaseBuildingBlock
,
BuildingBlock
,
Wait
,
BaseSequence
,
nrepeat
,
Sequence
,
AlternativeBlocks
,
match_blocks!
,
get_index_single_TR
,
readout_times
,
edge_times
,
iter_blocks
,
iter_instant_gradients
,
iter_instant_pulses
export
ContainerBlock
,
start_time
,
end_time
,
waveform
,
waveform_sequence
,
events
,
BaseBuildingBlock
,
BuildingBlock
,
Wait
,
BaseSequence
,
nrepeat
,
Sequence
,
AlternativeBlocks
,
match_blocks!
,
get_index_single_TR
,
readout_times
,
edge_times
,
SequencePart
,
split_times
,
split_timestep
,
LinearSequence
,
iter_blocks
,
iter_instant_gradients
,
iter_instant_pulses
export
ContainerBlock
,
start_time
,
end_time
,
waveform
,
waveform_sequence
,
events
,
BaseBuildingBlock
,
BuildingBlock
,
Wait
,
BaseSequence
,
nrepeat
,
Sequence
,
AlternativeBlocks
,
match_blocks!
,
get_index_single_TR
,
readout_times
,
edge_times
,
iter_blocks
,
iter_instant_gradients
,
iter_instant_pulses
import
.
Pathways
:
Pathway
,
duration_transverse
,
duration_dephase
,
bval
,
bmat
,
get_pathway
import
.
Pathways
:
Pathway
,
duration_transverse
,
duration_dephase
,
bval
,
bmat
,
get_pathway
export
Pathway
,
duration_transverse
,
duration_dephase
,
bval
,
bmat
,
get_pathway
export
Pathway
,
duration_transverse
,
duration_dephase
,
bval
,
bmat
,
get_pathway
...
...
This diff is collapsed.
Click to expand it.
src/containers/containers.jl
+
0
−
2
View file @
c67ba627
...
@@ -3,12 +3,10 @@ include("abstract.jl")
...
@@ -3,12 +3,10 @@ include("abstract.jl")
include
(
"building_blocks.jl"
)
include
(
"building_blocks.jl"
)
include
(
"base_sequences.jl"
)
include
(
"base_sequences.jl"
)
include
(
"alternatives.jl"
)
include
(
"alternatives.jl"
)
include
(
"linearise.jl"
)
import
.
Abstract
:
ContainerBlock
,
start_time
,
end_time
,
effective_time
,
readout_times
,
edge_times
,
iter_blocks
,
iter_instant_gradients
,
iter_instant_pulses
import
.
Abstract
:
ContainerBlock
,
start_time
,
end_time
,
effective_time
,
readout_times
,
edge_times
,
iter_blocks
,
iter_instant_gradients
,
iter_instant_pulses
import
.
BuildingBlocks
:
BaseBuildingBlock
,
BuildingBlock
,
Wait
,
waveform
,
waveform_sequence
,
events
,
ndim_grad
import
.
BuildingBlocks
:
BaseBuildingBlock
,
BuildingBlock
,
Wait
,
waveform
,
waveform_sequence
,
events
,
ndim_grad
import
.
BaseSequences
:
BaseSequence
,
Sequence
,
nrepeat
,
get_index_single_TR
import
.
BaseSequences
:
BaseSequence
,
Sequence
,
nrepeat
,
get_index_single_TR
import
.
Alternatives
:
AlternativeBlocks
,
match_blocks!
import
.
Alternatives
:
AlternativeBlocks
,
match_blocks!
import
.
Linearise
:
SequencePart
,
split_times
,
split_timestep
,
LinearSequence
end
end
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Michiel Cottaar
@ndcn0236
mentioned in commit
caee89e2
·
11 months ago
mentioned in commit
caee89e2
mentioned in commit caee89e2489122c329f9e7cb4736ab4ea3f7fa4b
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment