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
michaelcrawley/Processing_Codes-master
POD2d.m
.m
Processing_Codes-master/MATLAB/General Use/PIV/POD2d.m
1,212
utf_8
712c0975e0382a04be86f64236a51043
function [phi, lambda] = POD2d(U) % L = length(flist); % % %read in first file to get sizing information, initialize variables % data = readimx([src_dir filesep flist{1}]); % [~,~,u,v] = showimx(data); % [M N] = size(u); % U = zeros(2*M*N,L); % U(:,1) = [u(:); v(:)]; % % %read...
github
michaelcrawley/Processing_Codes-master
tempspecf.m
.m
Processing_Codes-master/MATLAB/General Use/PIV/pivmat/tempspecf.m
5,581
utf_8
144c40125fc8154b319d50a470a4b149
function [w,etot] = tempspecf(v, freq, varargin) %TEMPSPECF Temporal power spectrum of vector / scalar fields % TEMPSPECF(V, FS) plots the temporal power spectrum, spatially averaged, % of the time series of vector or scalar fields V. FS is the sampling % frequency, in Hz (1 Hz by default). The maximum frenque...
github
michaelcrawley/Processing_Codes-master
spec2f.m
.m
Processing_Codes-master/MATLAB/General Use/PIV/pivmat/spec2f.m
15,063
utf_8
7a8f1fcce93115363ad442ceab946132
function sp = spec2f(f,varargin) %SPECF 2D power spectrum of vector/scalar fields. % SP2 = SPEC2F(F) returns a structure SP2 containing the 2D power % spectrum of the vector or scalar field(s) F. If F is an array of % fields, the average spectrum is returned. % % SP2 = SPEC2F(F,'hann') applies a Hann (or Hanni...
github
michaelcrawley/Processing_Codes-master
specf.m
.m
Processing_Codes-master/MATLAB/General Use/PIV/pivmat/specf.m
13,896
utf_8
8adc15226a8cc067d8ac3a069c12c9c0
function sp = specf(f,varargin) %SPECF 1D power spectrum of vector/scalar fields. % SP = SPECF(F) returns a structure SP containing the 1D power % spectrum of the vector or scalar field(s) F. If F is an array of % fields, the average spectrum is returned. Note: The factor 1/2, usually % used in the definition ...
github
michaelcrawley/Processing_Codes-master
vsf.m
.m
Processing_Codes-master/MATLAB/General Use/PIV/pivmat/vsf.m
11,535
utf_8
1165772fda70133b50f0739634bafdb6
function stfun=vsf(v,varargin) %VSF Structure functions of a vector field, histograms of increments % STFUN = VSF(F) computes the longitudinal and transverse structure % functions of the vector field F, and the histograms of the longitudinal % and transverse increments. If F is an array of fields, the structure ...
github
michaelcrawley/Processing_Codes-master
addnoisef.m
.m
Processing_Codes-master/MATLAB/General Use/PIV/pivmat/addnoisef.m
2,602
utf_8
1063b6a9fe5d9a10bd1895a19a0d970c
function ff=addnoisef(f,eps,opt,nc) %ADDNOISEF Add noise to vector/scalar fields % FF = ADDNOISEF(F) adds 10% normally-distributed white noise to the % vector/scalar field(s) F. % % FF = ADDNOISEF(F, EPS) specifies that the standard deviation of the % white noise is EPS times that of the field(s) F (EPS=0.1 by...
github
michaelcrawley/Processing_Codes-master
ssf.m
.m
Processing_Codes-master/MATLAB/General Use/PIV/pivmat/ssf.m
7,741
utf_8
7995ab6acf2e9bd5df0243f58748106f
function stfun=ssf(s,dim,varargin) %SSF Structure functions of a scalar field, histograms of increments % STFUN = SSF(F,DIM) computes the structure functions of the scalar field % F and the histograms of the scalar increments along the dimension DIM % (with DIM=1, 2, or 'x','y'). If F is an array of fields, the ...
github
michaelcrawley/Processing_Codes-master
loadset.m
.m
Processing_Codes-master/MATLAB/General Use/PIV/pivmat/private/loadset.m
8,189
utf_8
2339bb38bf0cd376c563c74dfede07f0
function vv=loadset(setname,filename,opt) %LOADSET Loads set(s) of vector/image fields (obsolete) % % WARNING: LOADSET is present in the private folder of the PIVMat % toolbox for compatibility issues. Use LOADVEC instead. % % F = LOADSET loads all the vector/image fields of the current director...
github
michaelcrawley/Processing_Codes-master
ezfft.m
.m
Processing_Codes-master/MATLAB/General Use/PIV/pivmat/private/ezfft.m
6,144
utf_8
ec0f79b7576b333f219274386191d1b7
function [w,e] = ezfft(varargin) %EZFFT Easy to use Power Spectrum % EZFFT(T,U) plots the power spectrum of the signal U(T) , where T is a % 'time' and U is a real signal (T can be considered as a space % coordinate as well). If T is a scalar, then it is interpreted as the % 'sampling time' of the signal U. I...
github
michaelcrawley/Processing_Codes-master
makedoc_pm.m
.m
Processing_Codes-master/MATLAB/General Use/PIV/pivmat/private/makedoc_pm.m
461
utf_8
52c3c9a5a98995b06a330f66bb10fd7c
function makedoc_pm %MAKEDOC_PM Generate the HTML help files for the PIVMat toolbox % (internal use only - 29 oct 2006) curdir = pwd; cd .. makehtmldoc('*.m', 'upper', 'noad', ... 'title', '\f (PIVMat Toolbox)',... 'firstline', 'PIVMat Function Reference',... 'lastline', '2005-2013 <a href="pivmat.ht...
github
michaelcrawley/Processing_Codes-master
showvec.m
.m
Processing_Codes-master/MATLAB/General Use/PIV/pivmat/private/showvec.m
14,259
utf_8
f65905c01d9b7551e49da10c2fb557c6
function mov=showvec(f,varargin) %SHOWVEC Display vector field(s) % See SHOWF for the documentation of this command % F. Moisy, moisy_at_fast.u-psud.fr % Revision: 3.00, Date: 2013/02/22 % This function is part of the PIVMat Toolbox % History: % 2004/04/01: v1.00, first version. % 2004/06/22: v1.10, change...
github
michaelcrawley/Processing_Codes-master
showscal.m
.m
Processing_Codes-master/MATLAB/General Use/PIV/pivmat/private/showscal.m
14,773
utf_8
741c52a7d9735f35599f882f8f9be888
function fr=showscal(f,varargin) %SHOWSCAL Display scalar field(s) % See SHOWF for the documentation of this command % F. Moisy, moisy_at_fast.u-psud.fr % Revision: 2.60, Date: 2012/07/05 % This function is part of the PIVMat Toolbox % History: % 2004/04/01: v1.00, first version. % 2004/06/22, v1.01, chang...
github
michaelcrawley/Processing_Codes-master
smoothn.m
.m
Processing_Codes-master/MATLAB/General Use/PIV/PIVlab_1.32/smoothn.m
15,610
utf_8
079a590c86fc360eef8610dca9db4d8c
function [z,s,exitflag] = smoothn(varargin) %SMOOTHN Robust spline smoothing for 1-D to N-D data. % SMOOTHN provides a fast, automatized and robust discretized smoothing % spline for data of any dimension. % % Z = SMOOTHN(Y) automatically smoothes the uniformly-sampled array Y. Y % can be any N-D noisy array (...
github
michaelcrawley/Processing_Codes-master
exportfig.m
.m
Processing_Codes-master/MATLAB/General Use/PIV/PIVlab_1.32/exportfig.m
32,769
utf_8
c64155519b7fc569dfcf501d94376e63
function varargout = exportfig(varargin) %EXPORTFIG Export a figure. % EXPORTFIG(H, FILENAME) writes the figure H to FILENAME. H is % a figure handle and FILENAME is a string that specifies the % name of the output file. % % EXPORTFIG(H, FILENAME, OPTIONS) writes the figure H to FILENAME % with options init...
github
michaelcrawley/Processing_Codes-master
uipickfiles.m
.m
Processing_Codes-master/MATLAB/General Use/PIV/PIVlab_1.32/uipickfiles.m
29,267
utf_8
0471256566989e7bc5b6255ba8100562
function out = uipickfiles(varargin) % Version: 1.3, 5 February 2010 % Author: Douglas M. Schwarz % Email: dmschwarz=ieee*org, dmschwarz=urgrad*rochester*edu % Real_email = regexprep(Email,{'=','*'},{'@','.'}) %uipickfiles: GUI program to select file(s) and/or directories. % % Syntax: % files = uipickfiles('Pr...
github
michaelcrawley/Processing_Codes-master
AcousticPlotter.m
.m
Processing_Codes-master/MATLAB/General Use/Acoustics/AcousticPlotter.m
13,655
utf_8
bebbcba83dd96262669ebc930d6247f4
function AcousticPlotter(src_dir,flist,varargin) cmds = varargin; if ~exist('varargin','var') error('Error: no forcing options were chosen'); end %%plot individual spectra versus baselines if any(strcmpi(varargin,'-Spectra')) bflist = varargin{1}; Spectra(src_dir,flist,...
github
michaelcrawley/Processing_Codes-master
micOrientationCorrect.m
.m
Processing_Codes-master/MATLAB/General Use/Acoustics/Sound Processing/micOrientationCorrect.m
6,281
utf_8
f27deb5bb8a14e4728bbfb649cedaba0
function CA = micOrientationCorrect(F, th, A) %This program corrects spectra for microphone orientation based on the %value given in the vector "th" in degrees. Normal microphone incidence is %indicated by th==0. %Correction is based on the difference in dB between the response at 0 %angle incidence as compared to one...
github
michaelcrawley/Processing_Codes-master
MasterSoundProcessing.m
.m
Processing_Codes-master/MATLAB/General Use/Acoustics/Sound Processing/MasterSoundProcessing.m
2,594
utf_8
019ff074b5da3bacf35ebe8910dde354
function MasterSoundProcessing(PARAMS,cpus) %%%Check program inputs if ~strcmp(PARAMS(end-3:end),'.mat'), PARAMS = [PARAMS '.mat']; end if ~exist('cpus','var'), cpus = FindCoreCount; end %%%Open matlab pool & modify loop function, if necessary loop = 'for'; routine = Processing_Routine;...
github
michaelcrawley/Processing_Codes-master
NormDistance.m
.m
Processing_Codes-master/MATLAB/General Use/Acoustics/Sound Processing/NormDistance.m
3,951
utf_8
fcb242f7b8be783fa983fd5d922832fc
function [Aout, al, ph] = NormDistance(varargin) %Corrects acoustic results for distance based on noise source location or %simple radial propagation depending on inputs. The noise source location %calculation is at the end of this file. % %CALLS % [Aout, al, ph] = NormDistance(A,Std,R,ChPol,NormD,dBShift) % - Co...
github
michaelcrawley/Processing_Codes-master
getFileDependencies.m
.m
Processing_Codes-master/MATLAB/General Use/Acoustics/Sound Processing/getFileDependencies.m
5,408
utf_8
697f9adc0fb559e100f6078cd48c48bc
function list = getFileDependencies(file) % searches the paths of the .m-Files the given file is using. This function % depends on the depfun-Function of Matlab. Though it is not guaranteed, % that all files will be found. E.g. files in evaluate-constructs won't be % found!! %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%...
github
jyi2/KCF-tracker-master
run_tracker.m
.m
KCF-tracker-master/run_tracker.m
7,994
utf_8
d568104fd632e7d2775b560208dbadcc
% % High-Speed Tracking with Kernelized Correlation Filters % % Joao F. Henriques, 2014 % http://www.isr.uc.pt/~henriques/ % Edited by Jianyi Yi, 2015 % % Main interface for Kernelized/Dual Correlation Filters (KCF/DCF). % This function takes care of setting up parameters, loading video % information ...
github
jyi2/KCF-tracker-master
position_records.m
.m
KCF-tracker-master/position_records.m
1,300
utf_8
d7d4412735d87d60e13d2a2e32626027
% called by RUN_TRACKER to record the tracking box's position to text file % format: [topleft_x, topleft_y, bottomright_x, bottomright_y] % parameters: % POSITIONS is an Nx2 matrix of target positions (the centroid) over time (in the format [rows, columns]) % TARGET_SZ is the size of the tracking box (format [h...
github
rgrosse/convnet-master
use_cimgmatlab.m
.m
convnet-master/deps/CImg/examples/use_cimgmatlab.m
1,242
utf_8
c7cefea57d7bf6077ec6a77f3bdda6b6
/*----------------------------------------------------------------------- File : use_cimgmatlab.m Description: Example of use for the CImg plugin 'plugins/cimgmatlab.h' which allows to use CImg in order to develop matlab external functions (mex functions). User should be familiar with Matlab C/C++ mex functi...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
run_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/run_isr_trafsim.m
22,686
utf_8
5289bb2188d08a360faa12ed9fc8abd2
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
round_gest_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/round_gest_isr_trafsim.m
10,315
utf_8
e7c57d9f8a32f6c41d4c3fd7e1e9fbda
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
move_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/move_isr_trafsim.m
11,315
utf_8
664a36c4b7507126232b2300d51a6472
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
cross_gest_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/cross_gest_isr_trafsim.m
10,161
utf_8
8e033a397fd55e31856be0a180737a1b
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
check_road_after_cross_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/check_road_after_cross_isr_trafsim.m
2,485
utf_8
170189250bc9d79050f20341d6847803
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
check_road_free_int_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/check_road_free_int_isr_trafsim.m
3,267
utf_8
0269a82585228b2fcb56e7b8904d55a5
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
check_dist_end_road_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/check_dist_end_road_isr_trafsim.m
2,419
utf_8
8a1529600630efd269fb5a1d7e1ef4c3
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
check_launch_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/check_launch_isr_trafsim.m
2,959
utf_8
2768fdb16bfb4b6eb1f6eb95c14bd316
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
getPossibleOut_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/getPossibleOut_isr_trafsim.m
2,451
utf_8
48c9efa2c4681a28353cfcb44f683790
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
list_cross_already_reserve_gest_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/list_cross_already_reserve_gest_isr_trafsim.m
3,087
utf_8
93c6a0a359d5e89d5f46431a08732718
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
check_road_after_roundabout_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/check_road_after_roundabout_isr_trafsim.m
2,508
utf_8
1bf1715824cbb5945952d97fc4d21a56
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
check_next_next_road_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/check_next_next_road_isr_trafsim.m
2,492
utf_8
ef4baa59ffd35a3b7228a4521d2bdd9f
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
check_roundabout_entrance_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/check_roundabout_entrance_isr_trafsim.m
3,546
utf_8
f5c52c1a4bbae21310c0fb50bd13638c
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
getCarIDFromMapCross_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/getCarIDFromMapCross_isr_trafsim.m
2,485
utf_8
61d0ce02adaf94a4e41449b0fea8dd3a
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
getCarIDFromMap_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/getCarIDFromMap_isr_trafsim.m
2,480
utf_8
b4df260d46b2f69f29c889f56acf5f98
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
check_dist_start_road_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/check_dist_start_road_isr_trafsim.m
2,574
utf_8
e89bfba58efce711af66499b76d174dc
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
getOcmapWithoutSema_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/getOcmapWithoutSema_isr_trafsim.m
2,817
utf_8
5fb559ad05bd2965ce1b8d397e9d1a36
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
list_round_already_reserve_gest_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/list_round_already_reserve_gest_isr_trafsim.m
3,114
utf_8
b5d41c0111d0829874233c36a2e7ae45
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
check_cross_entrance_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/check_cross_entrance_isr_trafsim.m
3,596
utf_8
a20116c11a45428a78b6fd751615752c
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
check_next_road_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/check_next_road_isr_trafsim.m
2,625
utf_8
c5954530d7a494c24e6929652841a0d0
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
check_road_before_cross_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/check_road_before_cross_isr_trafsim.m
2,516
utf_8
56d87f6b2bbb30777a103dab71bde258
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
getPossibleOutCross_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/getPossibleOutCross_isr_trafsim.m
2,457
utf_8
88f6ad742ce6c1fc34876ea28fd284af
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
check_road_ahead_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/check_road_ahead_isr_trafsim.m
2,831
utf_8
01440892edbe67ea2ab7761749f01666
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
check_road_free_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/check/check_road_free_isr_trafsim.m
3,230
utf_8
0c0f32ef91a2cda16ccbe4bb1e9e340a
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
delete_task_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/func/delete_task_isr_trafsim.m
28,404
utf_8
6f86333af3821bdb4a5e449b56a10c08
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
slip_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/func/slip_isr_trafsim.m
2,392
utf_8
12cc3634e25bb51b69d97524f39142ac
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
load_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/func/load_isr_trafsim.m
2,367
utf_8
ec79a349d876d6b7e7a56d315bcea354
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
add_car_notify_round_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/func/add_car_notify_round_isr_trafsim.m
3,493
utf_8
0efb80b10074058e5d515854bf58b8d3
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
view_offline_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/func/view_offline_isr_trafsim.m
4,579
utf_8
afa03d574aefbe2ffce874b86f77042a
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
angle_boundary_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/func/angle_boundary_isr_trafsim.m
2,341
utf_8
9d42ddf0156f6fc0423181930d760390
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
cross_proximity_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/func/cross_proximity_isr_trafsim.m
2,567
utf_8
22210cec8d982b7b64d56a8210374743
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
view_cross_cels_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/func/view_cross_cels_isr_trafsim.m
3,520
utf_8
4b75825999fff46ba13cd058e3c1318a
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
pause_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/func/pause_isr_trafsim.m
2,322
utf_8
86563a4e23b42f5c559470a52e863990
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
overtake_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/func/overtake_isr_trafsim.m
6,960
utf_8
6a5ccc824cd3bc9e207f6dc82123dd82
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
relativepos_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/func/relativepos_isr_trafsim.m
2,571
utf_8
c3a916e2e73188b0d27dae3aac8df51c
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
round_proximity_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/func/round_proximity_isr_trafsim.m
2,578
utf_8
2a9407cf75fb3bd578d0c7585601f5fd
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
launch_car_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/func/launch_car_isr_trafsim.m
10,644
utf_8
618a2b1f52ede46052b39f85dd1e24cc
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
add_car_notify_cross_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/func/add_car_notify_cross_isr_trafsim.m
3,489
utf_8
b81c7c053cd99e6ef2d4060f4e6833bd
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
gera_seq_aleatoria_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/func/gera_seq_aleatoria_isr_trafsim.m
2,344
utf_8
bea40fea70bab925b25c2226940d482d
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
reset_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/func/reset_isr_trafsim.m
2,360
utf_8
e559dc3d9d4fa9cdaff97d0fcae08cd4
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
view_map_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/graphic/view_map_isr_trafsim.m
2,500
utf_8
453f14be270414adb4b0f9ec9514a5ab
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
graphical_environment_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/graphic/graphical_environment_isr_trafsim.m
3,532
utf_8
cbc798fecaf025a3f67bd5beed7b4e4d
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
view_3D_map_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/graphic/view_3D_map_isr_trafsim.m
3,579
utf_8
82a7a657203756a83d1037d9e302840d
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
printset_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/graphic/printset_isr_trafsim.m
16,312
utf_8
7a4f529735fdbdd77720ba4f3b83dc90
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
print_sema_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/graphic/print_sema_isr_trafsim.m
2,718
utf_8
272d708d76f66ad455e23a8cef6cdaa1
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
ota_commu_run_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/commu/ota_commu_run_isr_trafsim.m
3,578
utf_8
ab9be487372574298f4ea340f383d8f9
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
rxtx_module_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/commu/rxtx_module_isr_trafsim.m
3,796
utf_8
2d0f0a3b9f24f19d075381722097163e
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
analyse_vel_prof_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/statistics/analyse_vel_prof_isr_trafsim.m
2,547
utf_8
bdd4df2bfe99955765e7531a3d180535
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
compute_stats_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/statistics/compute_stats_isr_trafsim.m
15,518
utf_8
5bc810e5d4b13c6704446639de02d589
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
gps2_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/gps2/gps2_isr_trafsim.m
5,570
utf_8
45d451394a16218bf0821aa7d5af2cef
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
write_MM_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/reserveM/write_MM_isr_trafsim.m
3,177
utf_8
4211e1c7c83fdc13b3084bb7cf6e0608
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
create_L_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/reserveM/create_L_isr_trafsim.m
2,398
utf_8
7ad5b25aa2ed4dbe7eb38bc87a8b1d2c
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
viewM_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/reserveM/viewM_isr_trafsim.m
2,978
utf_8
c155539ce37ec65ac976ce1dd53faf5d
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
create_layer_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/reserveM/create_layer_isr_trafsim.m
2,624
utf_8
663adc93d9262e39bddb43abb0fd39da
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
check_car_free_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/reserveM/check_car_free_isr_trafsim.m
3,247
utf_8
f12609eed7d6fca782050c431f891d53
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
write_layer_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/reserveM/write_layer_isr_trafsim.m
3,252
utf_8
b4270a0fe809e073e896ade9923f4d1a
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
writeM_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/reserveM/writeM_isr_trafsim.m
2,767
utf_8
968d86ef584bb1398bb430e12e3f10a1
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
conde-ISR-UC-PT/ISR-TrafSim-V2.0-master
write_profile_isr_trafsim.m
.m
ISR-TrafSim-V2.0-master/ISR-TrafSim.v2.0/reserveM/write_profile_isr_trafsim.m
2,712
utf_8
bf730c0a3d25aa489e1fb524a45d7bc4
%-------------------------------------------------------------------------- % ISR-TrafSim v2.0 % Copyright (C) 2010-2013 % %-------------------------------------------------------------------------- % This Matlab file is part of the ISR-TrafSim: a Matlab % library for tr...
github
pillowlab/GQM-master
gqm_inverse_link_function_factory.m
.m
GQM-master/gqm_inverse_link_function_factory.m
1,481
utf_8
24ec2d291081e42d8e5b26e48f121c37
function f = gqm_inverse_link_function_factory(name) % f = gqm_inverse_link_function_factory(name); % returns the point nonlinearity (aka mean function or inverse link function). % % Input % name: could be the name of the nonlinear function or a exponential family % distribution. In the latter case, it returns the CA...
github
pillowlab/GQM-master
encapsulateRaw.m
.m
GQM-master/zaso/encapsulateRaw.m
4,066
utf_8
0ffe7bc2f194ac9357e5c5ad47cee566
function zaso = encapsulateRaw(X, Y, bX, bY, isBulkProcess) % zaso = encapsulateRaw(X, Y, bX, bY, isBulkProcess) % reference implementation ZASO for no feature space transformation % Use this file as a template to create a new custom encapsuation procedure. % % Input: % X: (N x dx) N samples from the indepenent varia...
github
pillowlab/GQM-master
encapsulateTrials.m
.m
GQM-master/zaso/encapsulateTrials.m
5,030
utf_8
44039355559d0ec3c3ad945fb1205165
function zaso = encapsulateTrials(X, Y, tbX, tbY) % zaso = encapsulateTrials(X, Y, tbX, tbY) % Makes zaso from trial based datasets, possibly with bases functions. % Operations on the data are looped over trials. % % Input: % X: {nTrials x 1} consistent sequence of (T(i) x dx) matrices (independent v) % Y: {nTrials...
github
dineshreddy91/Semantic_Motion_Segmentation-master
computeColor.m
.m
Semantic_Motion_Segmentation-master/third_party/computeColor.m
3,142
utf_8
a36a650437bc93d4d8ffe079fe712901
function img = computeColor(u,v) % computeColor color codes flow field U, V % According to the c++ source code of Daniel Scharstein % Contact: schar@middlebury.edu % Author: Deqing Sun, Department of Computer Science, Brown University % Contact: dqsun@cs.brown.edu % $Date: 2007-10-31 21:20:30 (Wed, 31 O...
github
dineshreddy91/Semantic_Motion_Segmentation-master
classification_demo.m
.m
Semantic_Motion_Segmentation-master/third_party/mexopencv/samples/classification_demo.m
1,748
utf_8
3e0b46419f3d88c4367cbd411fed7fb2
function classification_demo %CLASSIFICATION_DEMO classification demo % % This demonstrates an example of machine learning algorithms in a simple % classification problem. It compares different classifiers using the same % data samples. % % Before start, addpath('/path/to/mexopencv'); % % Prepare data: there are two ...
github
dineshreddy91/Semantic_Motion_Segmentation-master
make.m
.m
Semantic_Motion_Segmentation-master/third_party/mexopencv/+mexopencv/make.m
12,284
utf_8
cc5701a39747926a2920cc782cbe81a6
function make(varargin) %MAKE Compile MEX-functions % % mexopencv.make % mexopencv.make('OptionName', optionValue, ...) % % Make builds mexopencv library. In Unix, this function invokes Makefile % in the project root. In Windows, the function takes an optional argument % to specify installed OpenCV path. % % ## ...
github
OceanOptics/TaraOceans-master
ACS_ResidTempScatCorr.m
.m
TaraOceans-master/ACS_ResidTempScatCorr.m
1,821
utf_8
29f77c0d3088f23d60e0e80db911e758
function [ap_TSalScatCorr] = ACS_ResidTempScatCorr(ap_uncorr, cp, wavel) wavel = wavel(:)'; [nspect, nwavel] = size(ap_uncorr); if size(ap_uncorr)~=size(cp) error('ap,cp size mismatch') end if length(wavel)~=nwavel error('Invalid lambda') end tmp = xlsread('Sulli...
github
tooringanalytics/pyambiguity-master
ambiguity_1_scratch.m
.m
pyambiguity-master/ambiguity_1_scratch.m
6,649
utf_8
af1562c07425afb9aa9d8232397cbe93
function ambiguity_1_scratch (u_basic, fcode, f_basic, F, K, T, N, sr, plotdir, signal_name) mkdir(plotdir); %dmpdat('u_basic', u_basic); %if fcode == 1 % dmpdat('f_basic', f_basic); %end %hbrk("dmp"); savdat(signal_name, 'u_basic', u_basic); m_basic=length(u_basic); %returns the...
github
tooringanalytics/pyambiguity-master
test_ambiguity_1_scratch.m
.m
pyambiguity-master/test_ambiguity_1_scratch.m
4,257
utf_8
8bd7f163aab45dd5ee626588fb3289cf
function test_ambiguity_1_scratch (sigcodes=[]) plotdir = 'matlab_plots'; mkdir(plotdir); % Plot the signals in the sigcodes array for sigcode = sigcodes, f_basic = 0; if sigcode == 0 || sigcode == 1 signal_name='Pulse'; u_basic = 1; fcode = 0; ...
github
RedHenLab/Audio-master
zfsig_mod.m
.m
Audio-master/GSoC2015/Breath_Detection/breath_detection_codes/zfsig_mod.m
2,931
utf_8
8bb323c259dc5b573c894b1c07cff698
function [zf,gci,es,f0] = zfsig_mod(wav,fs,winLength) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % function [zf,gci,es,f0] = zfsig(wav,fs,winLength) % % Returns: % zf - zero-frequency resonator signal % gci - glottal closure instants % es - excitation strength at GCIs % f0 - pitch f...
github
RedHenLab/Audio-master
epochExtract.m
.m
Audio-master/GSoC2015/Breath_Detection/breath_detection_codes/epochExtract.m
6,521
utf_8
65dc9d086b6fecfc85d3f8db3f4f07e7
%function [zfSig, gci, winLength]=epochExtract(wavFile) function [zfSig, gci, winLength]=epochExtract(wav,fs) % function [gci]=epochExtract(wav, fs) % zfSig is the zero frequency signal derived from speech signal. % gci is the glottal closure instant timing in seconds. %% Read the speech signal... % [sph fs1]=wavread...
github
RedHenLab/Audio-master
Detect_breath.m
.m
Audio-master/GSoC2015/Breath_Detection/breath_detection_codes/Detect_breath.m
11,797
utf_8
ff45e10d4c6032e62f7a152d0fef7fc8
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%% Code to detect Breath segments in given audio signals %%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Written on 02/08/2015 %%%%%%%%%%%%%%%%%%%%% function [] = D...
github
RedHenLab/Audio-master
zfsig.m
.m
Audio-master/GSoC2015/Breath_Detection/breath_detection_codes/zfsig.m
2,334
utf_8
92545f7cf30f1912763f05c8c28fecb6
function [zf] = zfsig(wav,fs) % function [zf] = zfsig(wav,fs) wav=-wav; winLength=xcorrWinLen(wav,fs); %hil_zfSig=zeroFreqFilter(abs(hilbert(wav)),fs,winLength-1); zf=zeroFreqFilter(wav,fs,winLength); function [zfSig]=zeroFreqFilter(wav,fs,winLength) dwav=diff(wav); dwav(end+1)=dwav(end); dwav=dwav/max(...
github
RedHenLab/Audio-master
epochStrengthExtract_voc.m
.m
Audio-master/GSoC2015/Breath_Detection/breath_detection_codes/epochStrengthExtract_voc.m
2,250
utf_8
3332880766c76cbd765471013a322336
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % This code is used for finding strengths of excitation from ZFR Signal % other programs: % epochExtract with winLength as one of the recived argument % No need give 8k sampling frequency signal %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%...
github
AlexHenderson/readbrukermaldi-master
readbrukermaldi.m
.m
readbrukermaldi-master/readbrukermaldi.m
10,382
utf_8
8d854a3733fa53e0304d7397b97582e6
function [mass,spectra,foldernames,filenames] = readbrukermaldi(foldernames) % READBRUKERMALDI Reads the Bruker Flex spectrum file format % Version 1.3 % % usage: % [mass,spectra,filenames] = readbrukermaldi(foldernames); % or % [mass,spectra,filenames] = readbrukermaldi(); % (The second version prompts for one or mo...
github
pedro-aaron/simpleOCR-master
createDataSet.m
.m
simpleOCR-master/createDataSet.m
1,426
utf_8
d73c66bccd113d8d1bbc67a75f95c526
%http://watermarkero.blogspot.mx/ %http://watermarkero.blogspot.mx/2015/03/reconocimiento-de-caracteres-usando.html %Reconocimiento de caracteres usando Matlab function createDataSet() clc close all %%Se obtiene la lista de clases folderName ='arialSegmented'; dirList = dir(['trainingSet/' folderName])...
github
pedro-aaron/simpleOCR-master
getSegmentsFromImage.m
.m
simpleOCR-master/getSegmentsFromImage.m
855
utf_8
d549ea7758435e0367511a8a897088fc
%http://watermarkero.blogspot.mx/ %http://watermarkero.blogspot.mx/2015/03/reconocimiento-de-caracteres-usando.html %Reconocimiento de caracteres usando Matlab function [segments] = getSegmentsFromImage(testImage,DEBUG) %% Valores por default if nargin<2, DEBUG=0; end; %% 1. Carga de la ...
github
Sage-Bionetworks/PDScores-master
vadsplitphon.m
.m
PDScores-master/bridge_ufb (for code generation)/vadsplitphon.m
3,353
utf_8
0cddac4a77beadfd15cfb6e72cf5dc84
% Segment a phonation recording, based on an attack-sustain-release state % machine model. % Inputs: % x - mono floating-point, [-1,+1] normalized phonation recording % Outputs: % y - phonation segments % i - sample index of start of each segment % % (CC BY-SA 3.0) Max Little, 2014 function [y,i] = vadsplit...
github
Sage-Bionetworks/PDScores-master
features_ufb.m
.m
PDScores-master/bridge_ufb (for code generation)/features_ufb.m
915
utf_8
385004ac2dfad9cc0d81bed49a0759a7
% Receives raw features, normalization parameters and feature weights, and % computes user feedback value. % Inputs: % ftvec - feature vector (1xN) % wvec - weight vector (Nx1) % ilog - list of features to apply logarithm (variance stabilization) % ftmin - feature normalization vector minimum (1xN) % ftma...