Skip to main content

Posts

Showing posts from May, 2007

Türkiye

flickr search

druggies

Top 200 list of drugs dipensed. In the US I am guessing. At RxList 1. Lipitor -high cholesterol 2. Toprol XL -hypertension, coronary artery disease 3. Norvasc -hypertension, coronary artery disease 4. Synthroid -hypothyroidism, goiter 5. Lexapro -SSRI antidepressant 6. Nexium -peptic ulcer, acid reflux 7. Singulair -asthma, allergy 8. Prevacid -stomach acid 9. Ambien -sleep 10.Zoloft -SSRI antidpressant
function [IM,NP,NV] = load_fdf(name,sliceno,imno) %---------------------------------------- %function load_fdf %Reads magnitude images in fdf format %Assumes, that the last entry in header is checksum %---------------------------------------- %Usage [IM,np,nv] = load_fdf(name,sliceno,imno); % %Input: %name = name of data directory without the .dat or .img extension %sliceno = slice number to read %imno = image number to read; optional % %Output: %IM = images, sorted by row %np = number of points in each FID (rows in IM); optional %nv = number of phase encoding lines (columns in each image); optional % %Examples: %[IM] = load_fdf('Test_data',1,1); %[IM np nv] = load_fdf('Test_data,',1,1); % %---------------------------------------- % Maj Hedehus, Varian, Inc., Oct 2001. % edited Nov 2003 -- Lulu Edwards (changed program to read in new names of files %---------------------------------------- % format input name dirname = sprintf('%s.img',name); if (exist(dirna...
function [IM,V,ct] = load_3D_fdf(name) %---------------------------------------- %function load_fdf modified to load 3D data %Reads magnitude images in fdf format %Assumes, that the last entry in header is checksum %---------------------------------------- %Usage [IM,np,nv] = load_fdf(name,sliceno,imno); % %Input: %name = name of data directory without the .dat or .img extension % %Output: %IM = images, sorted by row %V = size in voxels %ct = number of points read from file % %Examples: % %---------------------------------------- % Maj Hedehus, Varian, Inc., Oct 2001. % edited Nov 2003 -- Lulu Edwards (changed program to read in new names of files % msb April 2007 -- mark bolding changed for 3D %---------------------------------------- % format input name dirname = sprintf('%s.img',name); if (exist(dirname,'dir') == 0) dirname = sprintf('%s.dat',name); if (exist(dirname,'dir') == 0) error('Cannot find data directory'); end ...