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
d8500302
Verified
Commit
d8500302
authored
1 year ago
by
Michiel Cottaar
Browse files
Options
Downloads
Patches
Plain Diff
Actually import FixedGradient/Pulse
parent
5d91ddce
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/MRIBuilder.jl
+4
-4
4 additions, 4 deletions
src/MRIBuilder.jl
src/gradients/gradients.jl
+3
-0
3 additions, 0 deletions
src/gradients/gradients.jl
src/pulses/pulses.jl
+2
-0
2 additions, 0 deletions
src/pulses/pulses.jl
with
9 additions
and
4 deletions
src/MRIBuilder.jl
+
4
−
4
View file @
d8500302
...
@@ -35,11 +35,11 @@ export WaitBlock
...
@@ -35,11 +35,11 @@ export WaitBlock
import
.
Containers
:
Sequence
import
.
Containers
:
Sequence
export
Sequence
export
Sequence
import
.
Gradients
:
PulsedGradient
,
InstantGradientBlock
import
.
Gradients
:
PulsedGradient
,
InstantGradientBlock
,
FixedGradient
export
PulsedGradient
,
InstantGradientBlock
export
PulsedGradient
,
InstantGradientBlock
,
FixedGradient
import
.
Pulses
:
InstantRFPulseBlock
,
ConstantPulse
,
SincPulse
import
.
Pulses
:
InstantRFPulseBlock
,
ConstantPulse
,
SincPulse
,
FixedPulse
export
InstantRFPulseBlock
,
ConstantPulse
,
SincPulse
export
InstantRFPulseBlock
,
ConstantPulse
,
SincPulse
,
FixedPulse
import
.
Readouts
:
InstantReadout
import
.
Readouts
:
InstantReadout
export
InstantReadout
export
InstantReadout
...
...
This diff is collapsed.
Click to expand it.
src/gradients/gradients.jl
+
3
−
0
View file @
d8500302
...
@@ -3,6 +3,7 @@ Module defining sub-types of the [`GradientBlock`](@ref), i.e., any [`BuildingBl
...
@@ -3,6 +3,7 @@ Module defining sub-types of the [`GradientBlock`](@ref), i.e., any [`BuildingBl
- [`PulsedGradient`](@ref)
- [`PulsedGradient`](@ref)
- [`InstantGradientBlock`](@ref)
- [`InstantGradientBlock`](@ref)
- [`FixedGradient`](@ref)
Arbitrary gradient waveforms can be store din a [`ConcreteBlock`](@ref)
Arbitrary gradient waveforms can be store din a [`ConcreteBlock`](@ref)
"""
"""
...
@@ -10,9 +11,11 @@ module Gradients
...
@@ -10,9 +11,11 @@ module Gradients
include
(
"integrate_gradients.jl"
)
include
(
"integrate_gradients.jl"
)
include
(
"pulsed_gradients.jl"
)
include
(
"pulsed_gradients.jl"
)
include
(
"instant_gradients.jl"
)
include
(
"instant_gradients.jl"
)
include
(
"fixed_gradients.jl"
)
import
..
BuildingBlock
:
GradientBlock
import
..
BuildingBlock
:
GradientBlock
import
.
PulsedGradients
:
PulsedGradient
import
.
PulsedGradients
:
PulsedGradient
import
.
InstantGradients
:
InstantGradientBlock
import
.
InstantGradients
:
InstantGradientBlock
import
.
FixedGradients
:
FixedGradient
end
end
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/pulses/pulses.jl
+
2
−
0
View file @
d8500302
...
@@ -2,9 +2,11 @@ module Pulses
...
@@ -2,9 +2,11 @@ module Pulses
include
(
"instant_pulses.jl"
)
include
(
"instant_pulses.jl"
)
include
(
"constant_pulses.jl"
)
include
(
"constant_pulses.jl"
)
include
(
"sinc_pulses.jl"
)
include
(
"sinc_pulses.jl"
)
include
(
"fixed_pulses.jl"
)
import
.
InstantPulses
:
InstantRFPulseBlock
import
.
InstantPulses
:
InstantRFPulseBlock
import
.
ConstantPulses
:
ConstantPulse
import
.
ConstantPulses
:
ConstantPulse
import
.
SincPulses
:
SincPulse
import
.
SincPulses
:
SincPulse
import
.
FixedPulses
:
FixedPulse
end
end
\ No newline at end of file
This diff is collapsed.
Click to expand it.
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