We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We already have functionality for creating events similar to pulseq functions, for example:
% Matlab Pulseq Code seq = mr.Sequence() rf = mr.makeBlockPulse(args...) gr = mr.makeTrapezoid(args...) adc = mr.makeAdc(args...)
# Julia KomaMRI Code seq = Sequence() rf = RF(args...) gr = Grad(args...) adc = ADC(args...)
However, we don't have all functions for combining events. In matlab pulseq this is done the addBlock() function:
addBlock()
... seq.addBlock(rf, gr, adc)
The analog combination of event and concatenation in a sequence would be something like this:
... seq += (rf, gr, adc)
There are many options to be aware when dealing with combination of events, for example we could even sum two gx gradients.
The text was updated successfully, but these errors were encountered:
This isssue is the same as #4.
Sorry, something went wrong.
No branches or pull requests
We already have functionality for creating events similar to pulseq functions, for example:
However, we don't have all functions for combining events. In matlab pulseq this is done the
addBlock()
function:The analog combination of event and concatenation in a sequence would be something like this:
There are many options to be aware when dealing with combination of events, for example we could even sum two gx gradients.
The text was updated successfully, but these errors were encountered: