plateform stringclasses 1
value | repo_name stringlengths 13 113 | name stringlengths 3 74 | ext stringclasses 1
value | path stringlengths 12 229 | size int64 23 843k | source_encoding stringclasses 9
values | md5 stringlengths 32 32 | text stringlengths 23 843k |
|---|---|---|---|---|---|---|---|---|
github | strotherlab/oppni-master | flip_lr.m | .m | oppni-master/scripts_matlab/NIFTI_tools/flip_lr.m | 3,572 | utf_8 | e25b4274ea388f67784143391c19ea4d | % When you load any ANALYZE or NIfTI file with 'load_nii.m', and view
% it with 'view_nii.m', you may find that the image is L-R flipped.
% This is because of the confusion of radiological and neurological
% convention in the medical image before NIfTI format is adopted. You
% can find more details from:
%
%... |
github | strotherlab/oppni-master | save_nii.m | .m | oppni-master/scripts_matlab/NIFTI_tools/save_nii.m | 9,730 | utf_8 | a6ac81ffcecf13d5f5743033f63cbfea | % Save NIFTI dataset. Support both *.nii and *.hdr/*.img file extension.
% If file extension is not provided, *.hdr/*.img will be used as default.
%
% Usage: save_nii(nii, filename, [old_RGB])
%
% nii.hdr - struct with NIFTI header fields (from load_nii.m or make_nii.m)
%
% nii.img - 3D (or 4D) matrix o... |
github | strotherlab/oppni-master | rri_file_menu.m | .m | oppni-master/scripts_matlab/NIFTI_tools/rri_file_menu.m | 4,154 | utf_8 | 53fdb972c7c9e1ad11f50923b684f862 | % Imbed a file menu to any figure. If file menu exist, it will append
% to the existing file menu. This file menu includes: Copy to clipboard,
% print, save, close etc.
%
% Usage: rri_file_menu(fig);
%
% rri_file_menu(fig,0) means no 'Close' menu.
%
% - Jimmy Shen (jimmy@rotman-baycrest.on.ca)
%
... |
github | strotherlab/oppni-master | reslice_nii.m | .m | oppni-master/scripts_matlab/NIFTI_tools/reslice_nii.m | 10,172 | utf_8 | f4306ccc6a3e19cc884e106f3240bfa9 | % The basic application of the 'reslice_nii.m' program is to perform
% any 3D affine transform defined by a NIfTI format image.
%
% In addition, the 'reslice_nii.m' program can also be applied to
% generate an isotropic image from either a NIfTI format image or
% an ANALYZE format image.
%
% The resliced N... |
github | strotherlab/oppni-master | save_untouch_nii.m | .m | oppni-master/scripts_matlab/NIFTI_tools/save_untouch_nii.m | 6,764 | utf_8 | 149174d0c5a20ddb468bcbfcb1932d3e | % Save NIFTI or ANALYZE dataset that is loaded by "load_untouch_nii.m".
% The output image format and file extension will be the same as the
% input one (NIFTI.nii, NIFTI.img or ANALYZE.img). Therefore, any file
% extension that you specified will be ignored.
%
% Usage: save_untouch_nii(nii, filename)
%
%... |
github | strotherlab/oppni-master | view_nii.m | .m | oppni-master/scripts_matlab/NIFTI_tools/view_nii.m | 144,605 | utf_8 | 55d70f187cc48e696c1356ec027060c2 | % VIEW_NII: Create or update a 3-View (Front, Top, Side) of the
% brain data that is specified by nii structure
%
% Usage: status = view_nii([h], nii, [option]) or
% status = view_nii(h, [option])
%
% Where, h is the figure on which the 3-View will be plotted;
% nii is the brain data in NIFTI format;
% o... |
github | strotherlab/oppni-master | mat_into_hdr.m | .m | oppni-master/scripts_matlab/NIFTI_tools/mat_into_hdr.m | 2,691 | utf_8 | 847d96698f45f7c5e7decbb3a0c3187f | %MAT_INTO_HDR The old versions of SPM (any version before SPM5) store
% an affine matrix of the SPM Reoriented image into a matlab file
% (.mat extension). The file name of this SPM matlab file is the
% same as the SPM Reoriented image file (.img/.hdr extension).
%
% This program will convert the ANALYZE 7.5 SPM... |
github | strotherlab/oppni-master | xform_nii.m | .m | oppni-master/scripts_matlab/NIFTI_tools/xform_nii.m | 18,635 | utf_8 | 6f14ec608f70ea53b2e87cf3f1ea41d0 | % internal function
% 'xform_nii.m' is an internal function called by "load_nii.m", so
% you do not need run this program by yourself. It does simplified
% NIfTI sform/qform affine transform, and supports some of the
% affine transforms, including translation, reflection, and
% orthogonal rotation (N*90 ... |
github | strotherlab/oppni-master | make_ana.m | .m | oppni-master/scripts_matlab/NIFTI_tools/make_ana.m | 5,665 | utf_8 | 37d574b277823f941138c9548127d720 | % Make ANALYZE 7.5 data structure specified by a 3D or 4D matrix.
% Optional parameters can also be included, such as: voxel_size,
% origin, datatype, and description.
%
% Once the ANALYZE structure is made, it can be saved into ANALYZE 7.5
% format data file using "save_untouch_nii" command (for more de... |
github | strotherlab/oppni-master | extra_nii_hdr.m | .m | oppni-master/scripts_matlab/NIFTI_tools/extra_nii_hdr.m | 8,085 | utf_8 | 4f76a8a66736025a0acf3efa15a2d2aa | % Decode extra NIFTI header information into hdr.extra
%
% Usage: hdr = extra_nii_hdr(hdr)
%
% hdr can be obtained from load_nii_hdr
%
% NIFTI data format can be found on: http://nifti.nimh.nih.gov
%
% - Jimmy Shen (jimmy@rotman-baycrest.on.ca)
%
function hdr = extra_nii_hdr(hdr)
switch hdr.dime.da... |
github | strotherlab/oppni-master | rri_xhair.m | .m | oppni-master/scripts_matlab/NIFTI_tools/rri_xhair.m | 2,303 | utf_8 | 8aff1235893da588ba15b5fbaedb557d | % rri_xhair: create a pair of full_cross_hair at point [x y] in
% axes h_ax, and return xhair struct
%
% Usage: xhair = rri_xhair([x y], xhair, h_ax);
%
% If omit xhair, rri_xhair will create a pair of xhair; otherwise,
% rri_xhair will update the xhair. If omit h_ax, current axes will
% b... |
github | strotherlab/oppni-master | save_untouch_nii_hdr.m | .m | oppni-master/scripts_matlab/NIFTI_tools/save_untouch_nii_hdr.m | 8,721 | utf_8 | 0d396eaeebb6114f24d56ab74a8299cf | % internal function
% - Jimmy Shen (jimmy@rotman-baycrest.on.ca)
function save_nii_hdr(hdr, fid)
if ~isequal(hdr.hk.sizeof_hdr,348),
error('hdr.hk.sizeof_hdr must be 348.');
end
write_header(hdr, fid);
return; % save_nii_hdr
%------------------------------------------------... |
github | strotherlab/oppni-master | expand_nii_scan.m | .m | oppni-master/scripts_matlab/NIFTI_tools/expand_nii_scan.m | 1,408 | utf_8 | dd944b3cd3f36c6936e9f2969e5335c4 | % Expand a multiple-scan NIFTI file into multiple single-scan NIFTI files
%
% Usage: expand_nii_scan(multi_scan_filename, [img_idx], [path_to_save])
%
% NIFTI data format can be found on: http://nifti.nimh.nih.gov
%
% - Jimmy Shen (jimmy@rotman-baycrest.on.ca)
%
function expand_nii_scan(filename, img_idx, n... |
github | strotherlab/oppni-master | load_untouch_header_only.m | .m | oppni-master/scripts_matlab/NIFTI_tools/load_untouch_header_only.m | 7,283 | utf_8 | 51aa4146b6ea9fbc51c75ef124a82850 | % Load NIfTI / Analyze header without applying any appropriate affine
% geometric transform or voxel intensity scaling. It is equivalent to
% hdr field when using load_untouch_nii to load dataset. Support both
% *.nii and *.hdr file extension. If file extension is not provided,
% *.hdr will be used as default.... |
github | strotherlab/oppni-master | bipolar.m | .m | oppni-master/scripts_matlab/NIFTI_tools/bipolar.m | 2,239 | utf_8 | c860ec93d96b6ab636c985280d79958d | %BIPOLAR returns an M-by-3 matrix containing a blue-red colormap, in
% in which red stands for positive, blue stands for negative,
% and white stands for 0.
%
% Usage: cmap = bipolar(M, lo, hi, contrast); or cmap = bipolar;
%
% cmap: output M-by-3 matrix for BIPOLAR colormap.
% M: number of shades in th... |
github | strotherlab/oppni-master | save_nii_hdr.m | .m | oppni-master/scripts_matlab/NIFTI_tools/save_nii_hdr.m | 9,498 | utf_8 | db1e8636e0bdf4ff68e162b68ab41dc0 | % internal function
% - Jimmy Shen (jimmy@rotman-baycrest.on.ca)
function save_nii_hdr(hdr, fid)
if ~exist('hdr','var') || ~exist('fid','var')
error('Usage: save_nii_hdr(hdr, fid)');
end
if ~isequal(hdr.hk.sizeof_hdr,348),
error('hdr.hk.sizeof_hdr must be 348.');
end
... |
github | strotherlab/oppni-master | Pipeline_QC1.m | .m | oppni-master/extra/Pipeline_QC1.m | 30,019 | utf_8 | 57a0be5d3a52caf83acd41e5c92c43c4 | function Pipeline_QC1( inputfile, varargin )
%
%==========================================================================
% PIPELINE_QC1: Quality Control plotting tool. Shows impact of running
% pipelines on subject data, including SPMs (brain maps) and performance metrics.
%===========================================... |
github | strotherlab/oppni-master | OPPNI_version_check_v3.m | .m | oppni-master/extra/OPPNI_version_check_v3.m | 52,761 | utf_8 | 1af1867f3f8841ddbdbee3e15b3eb397 | function out = OPPNI_version_check_v3( InputFile1, InputFile2, out_name, distatis_flag )
%
%
% Syntax:
% out = OPPNI_version_check( InputFile1, InputFile2, out_name, distatis_flag );
%
% Input:
% InputFile1, InputFile2: strings, giving path+name of the input text-files
% ... |
github | strotherlab/oppni-master | OPPNI_version_check.m | .m | oppni-master/extra/OPPNI_version_check.m | 31,104 | utf_8 | faa31a273a0f3d0b869a7efcc2e48a42 | function out = OPPNI_version_check( InputFile1, InputFile2, out_name, distatis_flag )
%
%
% Syntax:
% out = OPPNI_version_check( InputFile1, InputFile2, out_name, distatis_flag );
%
% Input:
% InputFile1, InputFile2: strings, giving path+name of the input text-files
% ... |
github | strotherlab/oppni-master | OPPNI_version_check_v2.m | .m | oppni-master/extra/OPPNI_version_check_v2.m | 51,233 | utf_8 | 69cb0078c14071278a8b415c6f34def9 | function out = OPPNI_version_check( InputFile1, InputFile2, out_name, distatis_flag )
%
%
% Syntax:
% out = OPPNI_version_check( InputFile1, InputFile2, out_name, distatis_flag );
%
% Input:
% InputFile1, InputFile2: strings, giving path+name of the input text-files
% ... |
github | strotherlab/oppni-master | asl_perfusion_est.m | .m | oppni-master/extra/arterial_spin_labelling/asl_perfusion_est.m | 9,271 | utf_8 | d91ba9745801abf29f0ad4f6c33be832 | function out = asl_perfusion_est( input_file, M0_ref, mask_file, subtract_type, dataInfo, format, outname )
%
% =========================================================================
% ASL_PERFUSION_EST: code to compute pasl perfusion estimates in OPPNI
% code framework. Adapted from "ASLtbx" package by Ze Wan... |
github | mmorise/tusk-master | act5.m | .m | tusk-master/src/act5.m | 2,576 | utf_8 | 33824cad1fb36991826ed524d35bef7c | function [result, method_list] =...
act5(filename_list, SNR_list, parallel_flag, flag)
fs = 48000;
[command_list, number_of_methods, method_list] =...
extract_commands(filename_list);
% Function loop_parallel() requires parallel computing toolbox.
if parallel_flag == 1 && check_toolbox == 1
result = loop_parall... |
github | mmorise/tusk-master | act1.m | .m | tusk-master/src/act1.m | 1,537 | utf_8 | 3ed9a0a5e74d3a1f1b2940c06afd9c9c | function [result, method_list] = act1(filename_list, f0_list, parallel_flag)
fs = 48000;
[command_list, number_of_methods, method_list] =...
extract_commands(filename_list);
% Function loop_parallel() requires parallel computing toolbox.
if parallel_flag == 1 && check_toolbox == 1
result = loop_parallel(fs, f0_li... |
github | mmorise/tusk-master | act6.m | .m | tusk-master/src/act6.m | 2,207 | utf_8 | 45c2b703f48fae62f95daacb5f199895 | function [result, method_list] =...
act6(filename_list, reverb_list, parallel_flag)
fs = 48000;
[command_list, number_of_methods, method_list] =...
extract_commands(filename_list);
% Function loop_parallel() requires parallel computing toolbox.
if parallel_flag == 1 && check_toolbox == 1
result = loop_parallel(... |
github | mmorise/tusk-master | act2.m | .m | tusk-master/src/act2.m | 1,561 | utf_8 | 61c41e01779e96bd78e7aee8d87e5a4e | function [result, method_list] = act2(filename_list, alpha_list, parallel_flag)
fs = 48000;
[command_list, number_of_methods, method_list] =...
extract_commands(filename_list);
% Function loop_parallel() requires parallel computing toolbox.
if parallel_flag == 1 && check_toolbox == 1
result = loop_parallel(fs, al... |
github | mmorise/tusk-master | act4.m | .m | tusk-master/src/act4.m | 1,555 | utf_8 | 6da681b6aa051ac15ff91bfe528720bc | function [result, method_list] = act4(filename_list, phase_list, parallel_flag)
fs = 48000;
[command_list, number_of_methods, method_list] =...
extract_commands(filename_list);
% Function loop_parallel() requires parallel computing toolbox.
if parallel_flag == 1 && check_toolbox == 1
result = loop_parallel(fs, ph... |
github | mmorise/tusk-master | act3.m | .m | tusk-master/src/act3.m | 1,522 | utf_8 | c10f70cab39c1ac63c9f2eafa4e2c0c2 | function [result, method_list] = act3(filename_list, amp_list, parallel_flag)
fs = 48000;
[command_list, number_of_methods, method_list] =...
extract_commands(filename_list);
% Function loop_parallel() requires parallel computing toolbox.
if parallel_flag == 1 && check_toolbox == 1
result = loop_parallel(fs, amp_... |
github | MohsenFayyaz89/FingerVein-SelfTaughtLearning-master | RouletteWheelSelection.m | .m | FingerVein-SelfTaughtLearning-master/01 Genetic Preprocess/RouletteWheelSelection.m | 794 | utf_8 | 3a18d449f3bbd27d0483a600ebbcc03b | % Based on Roulette wheel selection
% input is an array of any real number values
% output is the selection of one of the elements marked by its index
% location
function [index] = RouletteWheelSelection(arrayInput)
len = length(arrayInput);
% if input is one element then just return rightaway
if len ==1
... |
github | MohsenFayyaz89/FingerVein-SelfTaughtLearning-master | sparseAutoencoderLinearCost.m | .m | FingerVein-SelfTaughtLearning-master/02 Feature Extraction/sparseAutoencoderLinearCost.m | 5,880 | utf_8 | 052b14c43a2fc1c115ae4df26dae9968 | function [cost,grad] = sparseAutoencoderLinearCost(theta, visibleSize, hiddenSize, ...
lambda, sparsityParam, beta, data)
% -------------------- YOUR CODE HERE --------------------
% Instructions:
% Copy sparseAutoencoderCost in sparseAutoencoderCost.m from ... |
github | MohsenFayyaz89/FingerVein-SelfTaughtLearning-master | WolfeLineSearch.m | .m | FingerVein-SelfTaughtLearning-master/minFunc/WolfeLineSearch.m | 11,478 | utf_8 | d10187f2fedfa4143ebd6300537b6be4 | function [t,f_new,g_new,funEvals,H] = WolfeLineSearch(...
x,t,d,f,g,gtd,c1,c2,LS,maxLS,tolX,debug,doPlot,saveHessianComp,funObj,varargin)
%
% Bracketing Line Search to Satisfy Wolfe Conditions
%
% Inputs:
% x: starting location
% t: initial step size
% d: descent direction
% f: function value at st... |
github | MohsenFayyaz89/FingerVein-SelfTaughtLearning-master | minFunc_processInputOptions.m | .m | FingerVein-SelfTaughtLearning-master/minFunc/minFunc_processInputOptions.m | 3,704 | utf_8 | dc74c67d849970de7f16c873fcf155bc |
function [verbose,verboseI,debug,doPlot,maxFunEvals,maxIter,tolFun,tolX,method,...
corrections,c1,c2,LS_init,LS,cgSolve,qnUpdate,cgUpdate,initialHessType,...
HessianModify,Fref,useComplex,numDiff,LS_saveHessianComp,...
DerivativeCheck,Damped,HvFunc,bbType,cycle,...
HessianIter,outputFcn,useMex,use... |
github | Fan-Meng/CrackTokenToolbox-master | stDetect.m | .m | CrackTokenToolbox-master/CrackToken/stDetect.m | 3,111 | utf_8 | 0a81a658ad90533bbcdb97795db765c2 | function S = stDetect( I, model, stride, rescale_back )
% Detect sketch tokens in image.
%
% USAGE
% S = stDetect( I, model, [stride] )
%
% INPUTS
% I - [h x w x 3] color input image
% model - sketch token model trained with stTrain
% stride - [2] stride at which to compute sketch tokens
% ... |
github | Fan-Meng/CrackTokenToolbox-master | stToEdges.m | .m | CrackTokenToolbox-master/CrackToken/stToEdges.m | 2,278 | utf_8 | f217779cd2d248b068c8668797863709 | function E = stToEdges( S, nms, suppress )
% Convert sketch tokens to edges.
%
% USAGE
% E = stToEdges( S, [nms], [suppress] )
%
% INPUTS
% S - [h x w x (nTokens+1)] sketch token probability maps
% nms - [1] if true apply non-maximum suppression to edges
% suppress - [1] if true suppress boundary ... |
github | sbg2133/blast_readout-master | bus_single_port_ram_init.m | .m | blast_readout-master/sam_libs/casper_library/bus_single_port_ram_init.m | 19,918 | utf_8 | 09e8b58ab26d2a4b7d02d66ebfbf8fc3 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SKA Africa %
% http://www.kat.ac.za %
... |
github | sbg2133/blast_readout-master | rcmult_init.m | .m | blast_readout-master/sam_libs/casper_library/rcmult_init.m | 4,200 | utf_8 | 48239288509e086f6d81eb521a80beec | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://seti.ssl.berkeley.edu/casper/ %
... |
github | sbg2133/blast_readout-master | cosin_init.m | .m | blast_readout-master/sam_libs/casper_library/cosin_init.m | 28,195 | utf_8 | d9a31023f5d1cebf30a3fcc25bd84eb5 | % Generate cos/sin
%
% cosin_init(blk, varargin)
%
% blk = The block to be configured.
% varargin = {'varname', 'value', ...} pairs
%
% Valid varnames for this block are:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ... |
github | sbg2133/blast_readout-master | polynomial_init.m | .m | blast_readout-master/sam_libs/casper_library/polynomial_init.m | 9,746 | utf_8 | 1e1f6739e96ec953e2b202317ce5f63a | % Polynomial.
%
% polynomial_init(blk, varargin)
%
% blk = The block to be configured.
% varargin = {'varname', 'value', ...} pairs
%
% Valid varnames for this block are:
% n_polys = number of polynomials to implement
% degree = polynomial degree
% mult_latency = multiplier latency
% bits_out = number of bi... |
github | sbg2133/blast_readout-master | pfb_add_tree_init.m | .m | blast_readout-master/sam_libs/casper_library/pfb_add_tree_init.m | 7,371 | utf_8 | 1e2bd3a590b6dc5ab6214b61484f1e1d | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://seti.ssl.berkeley.edu/casper/ %
... |
github | sbg2133/blast_readout-master | fft_biplex_init.m | .m | blast_readout-master/sam_libs/casper_library/fft_biplex_init.m | 12,957 | utf_8 | ce01d00a2963f3ab6f7167d1f5912412 | % Initialize and configure an fft_biplex block.
%
% fft_biplex_init(blk, varargin)
%
% blk = the block to configure
% varargin = {'varname', 'value', ...} pairs
%
% Valid varnames:
% n_inputs = Number of simultaneous inputs
% FFTSize = Size of the FFT (2^FFTSize points).
% input_bit_width = Bi... |
github | sbg2133/blast_readout-master | update_casper_library_links.m | .m | blast_readout-master/sam_libs/casper_library/update_casper_library_links.m | 5,038 | utf_8 | 27eb7a850735a99442bca74c2fc283e2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://casper.berkeley.edu/ %
... |
github | sbg2133/blast_readout-master | compute_order.m | .m | blast_readout-master/sam_libs/casper_library/compute_order.m | 380 | utf_8 | 6fa81a3a2aa0a58dde94ccd697afb31e | % Computes the cyclic order of a permutation
function rv = compute_order(map)
order = 1;
for i=1:length(map),
j = -1;
cur_order = 1;
while j+1 ~= i,
if j < 0,
j = map(i);
else,
j = map(j+1);
cur_order = cur_order + 1;
end
end
... |
github | sbg2133/blast_readout-master | save_state.m | .m | blast_readout-master/sam_libs/casper_library/save_state.m | 2,502 | utf_8 | a9966a2e72bf3417935963e7a092139d | % Saves blk's new state and parameters.
%
% save_state(blk,varargin)
%
% blk = The block to check
% varargin = The things to compare.
%
% The block's UserData 'state' parameter is updated with the contents of the hash of
% varargin, and the parameters saved in the 'parameters' struct.
% the block's UserDataPersistent p... |
github | sbg2133/blast_readout-master | twiddle_general_init.m | .m | blast_readout-master/sam_libs/casper_library/twiddle_general_init.m | 11,555 | utf_8 | 28b657eb3a8f35ee083eb58d841f0efe | % twiddle_general_init(blk, varargin)
%
% blk = The block to configure
% varargin = {'varname', 'value, ...} pairs
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Karoo Array Telesope ... |
github | sbg2133/blast_readout-master | same_state.m | .m | blast_readout-master/sam_libs/casper_library/same_state.m | 4,645 | utf_8 | 418e3d4fb1b5e950970b0b1c7a7c592b | % Determines if a block's state matches the arguments.
%
% blk = The block to check
% varargin = A cell array of things to compare.
%
% The compares the block's UserData parameter with the contents of
% varargin. If they match, this function returns true. If they do not
% match, this function returns false.
%%%%%%%%... |
github | sbg2133/blast_readout-master | coeff_gen_init.m | .m | blast_readout-master/sam_libs/casper_library/coeff_gen_init.m | 28,263 | utf_8 | 4b35db011b8eef324515bed33a0e8ba8 | % coeff_gen_init(blk, varargin)
%
% blk = The block to configure
% varargin = {'varname', 'value, ...} pairs
%
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SKA Africa ... |
github | sbg2133/blast_readout-master | bitsnap_callback.m | .m | blast_readout-master/sam_libs/casper_library/bitsnap_callback.m | 3,198 | utf_8 | 680d04a1deb9d1c412fee10711f367bb | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Meerkat radio telescope project %
% www.kat.ac.za %
... |
github | sbg2133/blast_readout-master | fir_col_init.m | .m | blast_readout-master/sam_libs/casper_library/fir_col_init.m | 7,197 | utf_8 | fb82de9a6c3f4e202a20478cef68e0fc | % fir_col_init(blk, varargin)
%
% blk = The block to initialize.
% varargin = {'varname', 'value', ...} pairs
%
% Valid varnames for this block are:
% n_inputs = The number of parallel input samples.
% coeff = The FIR coefficients, top-to-bottom.
% add_latency = The latency of adders.
% mult_latency = The late... |
github | sbg2133/blast_readout-master | simple_bram_vacc_init.m | .m | blast_readout-master/sam_libs/casper_library/simple_bram_vacc_init.m | 2,999 | utf_8 | 8f8e87fb49dd1595118ad9a02258af3e | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://casper.berkeley.edu %
... |
github | sbg2133/blast_readout-master | cross_multiplier_init.m | .m | blast_readout-master/sam_libs/casper_library/cross_multiplier_init.m | 10,894 | utf_8 | a0cb5bc6652f61912313572d4c28061a | % cross_multiplier_init(blk, varargin)
%
% Used in refactor block
%
% blk = The block to configure
% varargin = {'varname', 'value, ...} pairs
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Ka... |
github | sbg2133/blast_readout-master | bus_expand_init.m | .m | blast_readout-master/sam_libs/casper_library/bus_expand_init.m | 10,705 | utf_8 | bb8856be5d72c2cfa78289755e0824bb | % Create a 'bus' of similar signals
%
% bus_expand_init(blk, varargin)
%
% blk = The block to be configured.
% varargin = {'varname', 'value', ...} pairs
%
% Valid varnames for this block are:
% outputNum = Number of outputs to split bus into
% outputWidth = Total bit width of each output
% outputBinaryPt = Binary poin... |
github | sbg2133/blast_readout-master | bus_dual_port_ram_init.m | .m | blast_readout-master/sam_libs/casper_library/bus_dual_port_ram_init.m | 29,653 | utf_8 | c6478aedce086e963916fa3618e5d4eb | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SKA Africa %
% http://www.kat.ac.za %
... |
github | sbg2133/blast_readout-master | mirror_spectrum_init.m | .m | blast_readout-master/sam_libs/casper_library/mirror_spectrum_init.m | 8,127 | utf_8 | 5a965401b6c43ddfe4379ba9a7117412 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SKASA %
% www.kat.ac.za %
... |
github | sbg2133/blast_readout-master | pfb_fir_coeff_gen_init.m | .m | blast_readout-master/sam_libs/casper_library/pfb_fir_coeff_gen_init.m | 15,990 | utf_8 | 1de8ce4de68d6d055f4914665ca8e8a1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SKA Africa %
% http://www.kat.ac.za %
... |
github | sbg2133/blast_readout-master | delay_wideband_prog_init.m | .m | blast_readout-master/sam_libs/casper_library/delay_wideband_prog_init.m | 10,869 | utf_8 | a754c63e13487297b707da15284afa1f | % Initialize and configure the delay wideband programmable block .
% By Jason + Mekhala, mods by Andrew
%
% delay_wideband_prog_init(blk, varargin)
%
% blk = The block to configure.
% varargin = {'varname', 'value', ...} pairs
%
% Declare any default values for arguments you might like.
function delay_wideband_prog_i... |
github | sbg2133/blast_readout-master | fir_dbl_tap_init.m | .m | blast_readout-master/sam_libs/casper_library/fir_dbl_tap_init.m | 7,747 | utf_8 | b5c58515b786a94c758a38b09fd6d81f | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://seti.ssl.berkeley.edu/casper/ %
... |
github | sbg2133/blast_readout-master | get_param_state.m | .m | blast_readout-master/sam_libs/casper_library/get_param_state.m | 1,994 | utf_8 | 77eacf7f9e7eed2d656b20cdfe419cf9 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://casper.berkeley.edu %
... |
github | sbg2133/blast_readout-master | get_var.m | .m | blast_readout-master/sam_libs/casper_library/get_var.m | 2,305 | utf_8 | 435a2de952a1862c45f78c3bd3f88368 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://seti.ssl.berkeley.edu/casper/ ... |
github | sbg2133/blast_readout-master | tostring.m | .m | blast_readout-master/sam_libs/casper_library/tostring.m | 1,006 | utf_8 | b3d643714b38a14e0d24db55ab592352 | %Designed to convert things into strings for populating mask text boxes.
%Works with 1D arrays (lists) and strings or single values.
% YMMV with multidimensional arrays or matrices.
function string = tostring( something, precision )
prec = 32;
if nargin > 1,
if precision > 50,
disp(['tostring: maximum... |
github | sbg2133/blast_readout-master | reorder_init.m | .m | blast_readout-master/sam_libs/casper_library/reorder_init.m | 22,713 | utf_8 | 2eec3baa33bc583d333266b32d5c9e1f | % Initialize and configure the reorder block.
%
% reorder_init(blk, varargin)
%
% blk = The block to be initialize.
% varargin = {'varname', 'value', ...} pairs
%
% Valid varnames for this block are:
% map = The desired output order.
% map_latency = The latency of the map block.
% bram_latency = The latency o... |
github | sbg2133/blast_readout-master | bus_expand_callback.m | .m | blast_readout-master/sam_libs/casper_library/bus_expand_callback.m | 2,941 | utf_8 | a9578b135a2cf3ba7b12b59590d8ad04 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Meerkat radio telescope project %
% www.kat.ac.za %
... |
github | sbg2133/blast_readout-master | update_casper_blocks.m | .m | blast_readout-master/sam_libs/casper_library/update_casper_blocks.m | 4,876 | utf_8 | 28e002207581eef426dc595617ce2536 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://seti.ssl.berkeley.edu/casper/ %
... |
github | sbg2133/blast_readout-master | reuse_block.m | .m | blast_readout-master/sam_libs/casper_library/reuse_block.m | 6,803 | utf_8 | f620e6db62266a70cf21654582ac4a59 | % Instantiate a block named 'name' from library template 'refblk',
% if no such block already exists. Otherwise, just configure that
% block with any parameter, value pairs provided in varargin.
% If refblk is has an '_init' function, this may still need to be
% called after this function is called.
%
% reuse_b... |
github | sbg2133/blast_readout-master | bus_register_init.m | .m | blast_readout-master/sam_libs/casper_library/bus_register_init.m | 8,416 | utf_8 | 56479e2951c05003310a5480efa71460 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SKA Africa %
% http://www.kat.ac.za %
... |
github | sbg2133/blast_readout-master | dsp48e_bram_vacc_init.m | .m | blast_readout-master/sam_libs/casper_library/dsp48e_bram_vacc_init.m | 3,432 | utf_8 | b71af83720863c419ea3b9fa21ccfbd4 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://casper.berkeley.edu %
... |
github | sbg2133/blast_readout-master | bus_mux_init.m | .m | blast_readout-master/sam_libs/casper_library/bus_mux_init.m | 8,977 | utf_8 | e6b13766a778f08c129db349ec3c5276 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SKA Africa %
% http://www.kat.ac.za %
... |
github | sbg2133/blast_readout-master | set_mask_params.m | .m | blast_readout-master/sam_libs/casper_library/set_mask_params.m | 3,193 | utf_8 | a43b90f45d40808d05842252739bc372 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://seti.ssl.berkeley.edu/casper/ %
... |
github | sbg2133/blast_readout-master | bus_convert_init.m | .m | blast_readout-master/sam_libs/casper_library/bus_convert_init.m | 11,760 | utf_8 | 7fb448c8574c845b7c631161004a912f |
function bus_convert_init(blk, varargin)
clog('entering bus_convert_init', 'trace');
defaults = { ...
'n_bits_in', [8 8 8], 'bin_pt_in', 8 , 'type_in', 1, 'cmplx', 'off', ...
'n_bits_out', 8 , 'bin_pt_out', 4 , 'type_out', 1, ...
'overflow', 1 , 'quantization', 1, 'misc', 'on'... |
github | sbg2133/blast_readout-master | bus_delay_init.m | .m | blast_readout-master/sam_libs/casper_library/bus_delay_init.m | 7,548 | utf_8 | 504af36d730100c74211cf950122986b | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SKA Africa %
% http://www.kat.ac.za %
... |
github | sbg2133/blast_readout-master | convert_of_init.m | .m | blast_readout-master/sam_libs/casper_library/convert_of_init.m | 7,714 | utf_8 | 9521c93dea6662366ea24665b32c1297 | % Bit width conversion in 2's complement data with indication of
% over/underflow
%
% convert_of_init(blk, varargin)
%
% blk = The block to initialise
% varargin = {'varname', 'value', ...} pairs
%
% Valid varnames for this block are:
%
% bit_width_i = Total bit width of input data
% binary_point_i = Numbe... |
github | sbg2133/blast_readout-master | twiddle_general_4mult_init.m | .m | blast_readout-master/sam_libs/casper_library/twiddle_general_4mult_init.m | 14,577 | utf_8 | a0dc57fd861b1c01fb32e2a389e2c90a | % twiddle_general_4mult_init(blk, varargin)
%
% blk = The block to configure
% varargin = {'varname', 'value, ...} pairs
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Karoo Array Telesope ... |
github | sbg2133/blast_readout-master | set_param_state.m | .m | blast_readout-master/sam_libs/casper_library/set_param_state.m | 2,025 | utf_8 | 4cabaa5ab4266c8cda5e954f884f6822 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://casper.berkeley.edu %
... |
github | sbg2133/blast_readout-master | sincos_init.m | .m | blast_readout-master/sam_libs/casper_library/sincos_init.m | 5,943 | utf_8 | f46b84e172872452da8ca5c34a2a10e6 | % Generate sine/cos.
%
% sincos_init(blk, varargin)
%
% blk = The block to be configured.
% varargin = {'varname', 'value', ...} pairs
%
% Valid varnames for this block are:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ... |
github | sbg2133/blast_readout-master | last_tap_real_init.m | .m | blast_readout-master/sam_libs/casper_library/last_tap_real_init.m | 2,685 | utf_8 | 8ea0bf0847220ce597822a7e4e587225 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://seti.ssl.berkeley.edu/casper/ ... |
github | sbg2133/blast_readout-master | bit_reverse_init.m | .m | blast_readout-master/sam_libs/casper_library/bit_reverse_init.m | 3,419 | utf_8 | 7a63f92cfb4aa1dfddd8dd479d06b938 | % Initialize and populate a bit_reverse block.
%
% bit_reverse_init(blk, varargin)
%
% blk = The block to initialize.
% varargin = {'varname', 'value', ...} pairs
%
% Valid varnames for this block are:
% n_bits = The number of input bits to reverse
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%... |
github | sbg2133/blast_readout-master | backpopulate_mask.m | .m | blast_readout-master/sam_libs/casper_library/backpopulate_mask.m | 3,100 | utf_8 | 8a41f770a26ae171fd8c088d0458ff61 | % Rewrites mask parameters as strings if short enough, otherwise call to extract.
%
% backpopulate_mask( blk, varargin )
%
% blk - The block whose mask will be modified
% varargin - {'var', 'value', ...} pairs
%
% Cycles through the list of mask parameter variable names. Appends a new cell
% with the variable value (ex... |
github | sbg2133/blast_readout-master | fft_callback_dsp48_adders.m | .m | blast_readout-master/sam_libs/casper_library/fft_callback_dsp48_adders.m | 2,151 | utf_8 | a28df53b3efb26e11cfa3e0158f78560 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://casper.berkeley.edu %
... |
github | sbg2133/blast_readout-master | bus_replicate_init.m | .m | blast_readout-master/sam_libs/casper_library/bus_replicate_init.m | 6,992 | utf_8 | e36f7955f116f0ce1ce005d256e92bfb | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SKA Africa %
% http://www.kat.ac.za %
... |
github | sbg2133/blast_readout-master | casper_library_downconverter_init.m | .m | blast_readout-master/sam_libs/casper_library/casper_library_downconverter_init.m | 28,332 | utf_8 | 1300c797cf54b5c2ce181b9204cc8992 | function casper_library_downconverter_init()
warning off Simulink:Engine:MdlFileShadowing;
close_system('casper_library_downconverter', 0);
mdl = new_system('casper_library_downconverter', 'Library');
blk = get(mdl,'Name');
warning on Simulink:Engine:MdlFileShadowing;
add_block('built-in/SubSystem', [blk,'/mixe... |
github | sbg2133/blast_readout-master | last_tap_init.m | .m | blast_readout-master/sam_libs/casper_library/last_tap_init.m | 3,201 | utf_8 | b4a61bac8f0d784d5db5bf82b9eb1e81 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://seti.ssl.berkeley.edu/casper/ ... |
github | sbg2133/blast_readout-master | barrel_switcher_init.m | .m | blast_readout-master/sam_libs/casper_library/barrel_switcher_init.m | 6,923 | utf_8 | 96b1eee88dfb1de4a21648a55921558b | % Initialize and configure the barrel switcher.
%
% barrel_switcher_init(blk, varargin)
%
% blk = The block to configure.
% varargin = {'varname', 'value', ...} pairs
%
% Valid varnames for this block are:
% n_inputs = Number of inputs
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%... |
github | sbg2133/blast_readout-master | rcs_init.m | .m | blast_readout-master/sam_libs/casper_library/rcs_init.m | 12,031 | utf_8 | c057a49a7b8e6b434c3314e6d96c3705 | % Embed revision control info into gateware
%
% rcs_init(blk, varargin)
%
% blk = The block to be configured.
% varargin = {'varname', 'value', ...} pairs
%
% Valid varnames for this block are:
% app_src = Revision source for application (git, svn, timestamp)
% lib_src = Revision source for libraries (git, svn, timesta... |
github | sbg2133/blast_readout-master | delay_bram_prog_dp_init.m | .m | blast_readout-master/sam_libs/casper_library/delay_bram_prog_dp_init.m | 4,950 | utf_8 | eeab252737022d3657e6b9ada95a8180 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SKA Africa %
% http://www.kat.ac.za %
... |
github | sbg2133/blast_readout-master | cmult_init.m | .m | blast_readout-master/sam_libs/casper_library/cmult_init.m | 15,123 | utf_8 | 48fd0d62a3d26f18e1e111be40033bab | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SKA Africa %
% http://www.kat.ac.za %
... |
github | sbg2133/blast_readout-master | propagate_vars.m | .m | blast_readout-master/sam_libs/casper_library/propagate_vars.m | 2,403 | utf_8 | 554d3ff7095f1958d659d4526bdb56b6 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://seti.ssl.berkeley.edu/casper/ ... |
github | sbg2133/blast_readout-master | twiddle_general_3mult_init.m | .m | blast_readout-master/sam_libs/casper_library/twiddle_general_3mult_init.m | 15,210 | utf_8 | 1274f1b5c8cdef1a8d3ad7f931f58f27 | % twiddle_general_3mult_init(blk, varargin)
%
% blk = The block to configure
% varargin = {'varname', 'value, ...} pairs
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Karoo Array Telesope ... |
github | sbg2133/blast_readout-master | first_tap_init.m | .m | blast_readout-master/sam_libs/casper_library/first_tap_init.m | 3,182 | utf_8 | 50e9b43589ff76f954942548c2469f51 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://seti.ssl.berkeley.edu/casper/ ... |
github | sbg2133/blast_readout-master | butterfly_direct_init.m | .m | blast_readout-master/sam_libs/casper_library/butterfly_direct_init.m | 22,175 | utf_8 | 4874f5db36e43f539e5f319cc57d131b | % Initialize and configure a butterfly_direct block.
%
% butterfly_direct_init(blk, varargin)
%
% blk = the block to configure
% varargin = {'varname', 'value', ...} pairs
%
% Valid varnames:
% * biplex = Make biplex.
% * FFTSize = Size of the FFT (2^FFTSize points).
% * Coeffs = Coefficients ... |
github | sbg2133/blast_readout-master | casper_library_bus_init.m | .m | blast_readout-master/sam_libs/casper_library/casper_library_bus_init.m | 44,036 | utf_8 | 6051a65f926951968b15924edc2de8b5 | function casper_library_bus_init()
warning off Simulink:Engine:MdlFileShadowing;
close_system('casper_library_bus', 0);
mdl = new_system('casper_library_bus', 'Library');
blk = get(mdl,'Name');
warning on Simulink:Engine:MdlFileShadowing;
add_block('built-in/SubSystem', [blk,'/bus_addsub']);
bus_addsub_gen([bl... |
github | sbg2133/blast_readout-master | square_transposer_init.m | .m | blast_readout-master/sam_libs/casper_library/square_transposer_init.m | 6,020 | utf_8 | 961ec46a987dd5eaa5ef2f8a8eab46ec | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://seti.ssl.berkeley.edu/casper/ ... |
github | sbg2133/blast_readout-master | fft_callback_arch.m | .m | blast_readout-master/sam_libs/casper_library/fft_callback_arch.m | 2,182 | utf_8 | a0497bc714337ac06795551eb88844ce | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://casper.berkeley.edu %
... |
github | sbg2133/blast_readout-master | complex_conj_init.m | .m | blast_readout-master/sam_libs/casper_library/complex_conj_init.m | 5,338 | utf_8 | e5f5200ad454c70cc3bb4eebfb935285 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SKASA %
% www.kat.ac.za %
... |
github | sbg2133/blast_readout-master | delay_srl_init.m | .m | blast_readout-master/sam_libs/casper_library/delay_srl_init.m | 3,979 | utf_8 | 1f53316360552c35a274dbd4c08e6552 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SKASA %
% www.kat.ac.za %
... |
github | sbg2133/blast_readout-master | clean_blocks.m | .m | blast_readout-master/sam_libs/casper_library/clean_blocks.m | 2,807 | utf_8 | 1262b3dca13b1b2051b0b227e10f9cfb | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://seti.ssl.berkeley.edu/casper/ ... |
github | sbg2133/blast_readout-master | bus_addsub_init.m | .m | blast_readout-master/sam_libs/casper_library/bus_addsub_init.m | 13,544 | utf_8 | 1d514e3e96c6c12d5ac218209757b168 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SKA Africa %
% http://www.kat.ac.za %
... |
github | sbg2133/blast_readout-master | dump_and_rethrow.m | .m | blast_readout-master/sam_libs/casper_library/dump_and_rethrow.m | 1,710 | utf_8 | ef2f9cadf917f9417f31f10faeea525b | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://seti.ssl.berkeley.edu/casper/ %
... |
github | sbg2133/blast_readout-master | dump_exception.m | .m | blast_readout-master/sam_libs/casper_library/dump_exception.m | 2,194 | utf_8 | 04c5177f30c57e32a81eea872633101f | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://seti.ssl.berkeley.edu/casper/ %
... |
github | sbg2133/blast_readout-master | dds_init.m | .m | blast_readout-master/sam_libs/casper_library/dds_init.m | 5,191 | utf_8 | 8cff883aba91024d1bce2d6c0804b478 | % dds_init(blk, varargin)
%
% blk = The block to initialize.
% varargin = {'varname', 'value', ...} pairs
%
% Valid varnames for this block are:
% freq_div = The (power of 2) denominator of the mixing frequency.
% freq = The numerator of the mixing frequency
% num_lo = The number of parallel streams provided
%... |
github | sbg2133/blast_readout-master | bus_create_init.m | .m | blast_readout-master/sam_libs/casper_library/bus_create_init.m | 4,385 | utf_8 | 50ffeaa6f812e06e4f70d6e21762adee | % Create a 'bus' of similar signals
%
% bus_create_init(blk, varargin)
%
% blk = The block to be configured.
% varargin = {'varname', 'value', ...} pairs
%
% Valid varnames for this block are:
% inputNum = Number of inputs
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ... |
github | sbg2133/blast_readout-master | delete_lines.m | .m | blast_readout-master/sam_libs/casper_library/delete_lines.m | 1,962 | utf_8 | 74821081e848af88f2fd32cc3221a25d | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Center for Astronomy Signal Processing and Electronics Research %
% http://seti.ssl.berkeley.edu/casper/ ... |
github | sbg2133/blast_readout-master | munge_block.m | .m | blast_readout-master/sam_libs/casper_library/munge_block.m | 3,319 | utf_8 | bbdc399735f88a8da2ad5cc7c1f1387e | % Performs various munges on a block.
%
% munge_block(blk,varargin)
%
% blk - The block whose mask will be dumbed down or turned off
% varargin - A cell array of strings indicating the munges to do.
%
% Supported munges:
%
% 'dumbdown'
%
% Dumbing down a block's mask makes the block's mask informative only;
% the m... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.