-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
a21f1ba merging changes for fixing GE pulse duration bug ec2303c fixed kPL error plots, and potential bug with spectral-spatial waveforms for odd number of points on GE systems bb69713 Merge pull request #2 from LarsonLab/HEAD cabf492 Fix to spectral correction for flyback spectral-spatial pulses 48db96a Fix to spectral correction for flyback spectral-spatial pulses bbfd759 Update README.md 7f4b9a3 Merge pull request #1 from LarsonLab/HP_toolbox_edits fc7819e Minor edits 51a48a0 Minor edits 3eb1b7e Minor edit 434c9e6 Minor edit ea4129b New kinetic model fitting function d0bbfb6 New kinetic model fitting function 66cdbfb Updated cplot function 8cb1bac Merge commit 'd608131b1f2f6f4aa6d21cf277dc842fa47730a4' as 'RF_pulses/spectral_spatial' ded562d Update README.md 88984ee Removing Spectral Spatial from toolbox (moved into its own repo) b95dc02 renamed mex directory d94d5bf Added gradient scaling compensation function and rf_tools 4c803a2 bug fixes, added some exploration of optimization 797d490 updates to documentation and new optimization code c0c903a Added optimal signal VFA code 2fdf290 IDEAL cleanup ba1be84 Update README.md 609451c Update README.md 74114d5 Create README.md 9867a0d Merge branch 'master' of https://git01.codeplex.com/hyperpolarizedmritoolbox Merging with spectral-spatial RF pulse additions 6140547 IDEAL cleanup be8f2eb Added Spectral-Spatial RF Pulse MATLAB Toolbox 658031a Added function to calculate NSA 48cad95 Initial file upload, including EPSI and variable flip angles git-subtree-dir: RF_pulses/spectral_spatial git-subtree-split: a21f1ba
- Loading branch information
Showing
11 changed files
with
362 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,23 @@ | ||
% | ||
% cplot(x) - plot complex function; | ||
% cplot([x,] y) - plot complex function; optional specification of x-axis | ||
% | ||
|
||
% written by John Pauly, 1989 | ||
% modified by Peder Larson, 2006 | ||
% (c) Board of Trustees, Leland Stanford Junior University | ||
|
||
function cplot(x) | ||
|
||
l = length(x); | ||
t = [1:l]/(l+1); | ||
plot(t,real(x),t,imag(x)); | ||
|
||
function cplot(x,y,s) | ||
|
||
if nargin == 1 | ||
y = x; | ||
l = length(x); | ||
x = [1:l]/(l+1); | ||
end | ||
|
||
if nargin < 3 | ||
plot(x,real(y),x,imag(y)); | ||
elseif nargin == 3 | ||
plot(x,real(y),s,x,imag(y),s); | ||
end | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.