Skip to content
Snippets Groups Projects
Verified Commit 233ff317 authored by Michiel Cottaar's avatar Michiel Cottaar
Browse files

Remove unused symmetric parameter

parent 5c4a2942
No related branches found
No related tags found
No related merge requests found
...@@ -25,7 +25,6 @@ Represents a radio-frequency pulse with a sinc-like amplitude and constant frequ ...@@ -25,7 +25,6 @@ Represents a radio-frequency pulse with a sinc-like amplitude and constant frequ
- [`bandwidth`](@ref): width of the rectangular function in frequency space (in kHz). If the `duration` is short (compared with 1/`bandwidth`), this bandwidth will only be approximate. - [`bandwidth`](@ref): width of the rectangular function in frequency space (in kHz). If the `duration` is short (compared with 1/`bandwidth`), this bandwidth will only be approximate.
""" """
struct SincPulse <: RFPulseComponent struct SincPulse <: RFPulseComponent
symmetric :: Bool
apodise :: Bool apodise :: Bool
Nzeros :: Tuple{Integer, Integer} Nzeros :: Tuple{Integer, Integer}
norm_flip_angle :: Tuple{Float64, Float64} norm_flip_angle :: Tuple{Float64, Float64}
...@@ -44,7 +43,6 @@ function SincPulse(; ...@@ -44,7 +43,6 @@ function SincPulse(;
Nzeros = (Nzeros, Nzeros) Nzeros = (Nzeros, Nzeros)
end end
res = SincPulse( res = SincPulse(
symmetric,
apodise, apodise,
Nzeros, Nzeros,
integral_nzero.(Nzeros, apodise), integral_nzero.(Nzeros, apodise),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment