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 | spkrafft/trex-master | filter_harmean.m | .m | trex-master/texture/tex_prep/tex_preprocess/not currently used/filter_harmean.m | 1,066 | utf_8 | 212cee496975aa5d8037e0abd047f2b2 | function [J,filter_name] = filter_harmean(varargin)
%FILTER_HARMEAN Implements a harmonic mean filter
% [IMG,FILTER_NAME] = FILTER_HARMEAN(IMG,SIZ)
%
% Parameters include:
%
% 'img' Self explanatory
%
% 'siz' (Optional)
% Default: 5
%
% Notes
% -----
% From Gonzalez... |
github | spkrafft/trex-master | imnoise2.m | .m | trex-master/texture/tex_prep/tex_preprocess/not currently used/imnoise2.m | 4,430 | utf_8 | 22a68a75127b3d560e9f50a8e1e5de92 | function R = imnoise2(type,varargin)
%IMNOISE2 Generates an array of random numbers with specified PDF.
% R = IMNOISE2(TYPE,M,N,A,B) generates an array, R, of size M-by-N, whose
% elements are rsondom numbers of the specified TYPE with parameters A
% and B. If only TYPE is included in the input argument list, a s... |
github | spkrafft/trex-master | hist_features.m | .m | trex-master/texture/tex_modules/tex_hist/hist_features.m | 2,245 | utf_8 | 8ff0595feb4709a24661b1d838dff38a | function [stats] = hist_features(I)
%HIST_FEATURES Compute all of the interested first order (descriptive)
% statistics.
% [STATS] = HIST_FEATURES(I) calculates all of the interested first
% order statistics including histogram measures, entropy, energy
%
% Parameters include:
%
% 'I' Self explanato... |
github | spkrafft/trex-master | laws2D_features.m | .m | trex-master/texture/tex_modules/tex_laws2D/laws2D_features.m | 3,435 | utf_8 | debd62325fe1bec3691ed54cd4281ad9 | function [stats] = laws2D_features(varargin)
%LAWS2D_FEATURES
% [STATS] = LAWS2D_FEATURES(IMG,MASK)
%
% Parameters include:
%
% 'img' Self explanatory
%
% 'mask' (Optional) Self explanatory
%
% Notes
% -----
% Not explicitly forcing histogram equalization as Laws originally
% proposed. Cou... |
github | spkrafft/trex-master | lung_features.m | .m | trex-master/texture/tex_modules/tex_lung/lung_features.m | 5,889 | utf_8 | 56462670e0d931005d41f5b5898f0609 | function [stats] = lung_features(varargin)
%LUNG_FEATURES Compute lung specific features
% [STATS] = LUNG_FEATURES(I,SIZ_VOX)
%
% Parameters include:
%
% 'I' Self explanatory
%
% 'siz_vox' (Optional) Size of voxel dimensions [x, y, z] in mm
%
% Notes
% -----
%
% References
% ----------
% ... |
github | spkrafft/trex-master | ngtdm_features.m | .m | trex-master/texture/tex_modules/tex_ngtdm/ngtdm_features.m | 2,397 | utf_8 | a19265a19d0c0bb13fb5a69814ec3e34 | function [stats] = ngtdm_features(varargin)
%NGTDM_FEATURES Properties of neighborhood gray tone difference matrix.
% STATS = NGTDM_FEATURES(SI,NGTDM,P) uses the scaled image, NGTDM, and
% probability of occurrence to calculate the features.
%
% NGTDM and P can be an m x 1 vector where m is the number of gray
... |
github | spkrafft/trex-master | ngtdm_matrix3D.m | .m | trex-master/texture/tex_modules/tex_ngtdm/ngtdm_matrix3D.m | 7,207 | utf_8 | a2330552f132a6284e9ae09a95841bb8 | function [ngtdm,p,si] = ngtdm_matrix3D(varargin)
%NGTDM_MATRIX3D Create neighborhood gray tone difference matrix.
% [NGTDM,P] = NGTDM_MATRIX3D(I) analyzes a scaled
% version of I and computes a one-dimensional matrix for an image in
% which the ith entry is a summaton of the differences between the gray
% leve... |
github | spkrafft/trex-master | ngtdm_weighted_matrix3D.m | .m | trex-master/texture/tex_modules/tex_ngtdm/ngtdm_weighted_matrix3D.m | 7,525 | utf_8 | fd09c37dd8b2d0578b5ad0154feeb3cf | function [ngtdm,p,si] = ngtdm_weighted_matrix3D(varargin)
% Forces dist=1 (i.e. neighborhood=3) and weights based on educlidean distance from
% center pixel assuming the image is isotropically resampled...This is what
% was implemented by Vallieres...
%NGTDM_MATRIX3D Create neighborhood gray tone difference matrix.
%... |
github | spkrafft/trex-master | glcm_matrix3D.m | .m | trex-master/texture/tex_modules/tex_glcm/glcm_matrix3D.m | 11,063 | utf_8 | aa136ff9f7e5f1520fb1fef64acc81b2 | function [glcm,si,offset] = glcm_matrix3D(varargin)
%GLCM_MATRIX3D Create gray-level co-occurrence matrix.
% GLCMS = GLCM_MATRIX3D(I) analyzes pairs of horizontally adjacent pixels in
% a scaled version of I. If I is a binary image, it is scaled to 2 levels.
% If I is an intensity image, it is scaled to 8 leve... |
github | spkrafft/trex-master | glcm_nonDirMatrix.m | .m | trex-master/texture/tex_modules/tex_glcm/glcm_nonDirMatrix.m | 3,305 | utf_8 | a11cb0c535e0dfe8ff519ba69dd0224e | function [nondir2D,nondir3D] = glcm_nonDirMatrix(glMatrix,offset)
%GLCM_NONDIRMATRIX Create non-directional 2D and 3D matrices for statistical
% texture feature calculation.
% [NONDIR2D,NONDIR3D] = GLCM_NONDIRMATRIX(GLMATRIX,OFFSET) returns the 2D
% and 3D non-directional matrices based on the input gray level m... |
github | spkrafft/trex-master | glrlm_matrix3D.m | .m | trex-master/texture/tex_modules/tex_glrlm/glrlm_matrix3D.m | 9,673 | utf_8 | b75bee6368d4e0419f608cda1a5f713a | function [glrlm,si,offset] = glrlm_matrix3D(varargin)
%GLRLM_MATRIX3D Create gray-level co-occurrence matrix.
% GLRLM = GLRLM_MATRIX3D(I) analyzes a scaled version of I and determines
% the number of consecutive, collinear pixels having the same gray level
% value. The length of the run is the number of pixels in... |
github | spkrafft/trex-master | glrlm_orderMatrix.m | .m | trex-master/texture/tex_modules/tex_glrlm/glrlm_orderMatrix.m | 3,627 | utf_8 | 9b885a1f71724a611e870d48f3eed9b7 | function [glMatrix] = glrlm_orderMatrix(glMatrix,inputOffset,outputOffset)
%GLRLM_ORDERMATRIX Order the matrices for statistical
% texture feature calculation.
% [GLMATRIX] = GLRLM_ORDERMATRIX(GLMATRIX,INPUTOFFSET,OUTPUTOFFSET) returns
% matrices based on the input gray level matrix.
%
% Parameters include:
... |
github | spkrafft/trex-master | mapX.m | .m | trex-master/map/mapX.m | 9,891 | utf_8 | 884c48b96945bf83cff33b18a63592fe | function varargout = mapX(varargin)
% MAPX MATLAB code for mapX.fig
% MAPX, by itself, creates a new MAPX or raises the existing
% singleton*.
%
% H = MAPX returns the handle to a new MAPX or the handle to
% the existing singleton*.
%
% MAPX('CALLBACK',hObject,eventData,h,...) calls the local
%... |
github | spkrafft/trex-master | parameters_mapX.m | .m | trex-master/map/map_parameters/parameters_mapX.m | 16,784 | utf_8 | 63f96d9204e40df6c1cff6d0cb276c56 | function parameters = parameters_mapX(input_profile)
% PARAMETERS_MAPX Create programmatic GUI with uitree to select
% parameters for testureX
%
% Notes
% -----
% Blerg...used nested functions for the callbacks to get the correct
% output when the figure is closed.
%
% Parts are borrowed from uitree code po... |
github | spkrafft/trex-master | lung_map.m | .m | trex-master/map/map_modules/map_lung/lung_map.m | 2,582 | utf_8 | fa4a8a38d0ca3aedfb4bf129baae19d2 | function [map] = lung_map(varargin)
%LUNG_MAP Create lung specific feature matrix maps
% MAP = LUNG_MAP(I,X,Y,Z) analyzes pixels in I. The LUNG and resulting features are
% calculated at the supplied points X,Y,Z. The output variable, MAP, is a
% structure with a map calculated for each LUNG feature.
%
% LUNG... |
github | spkrafft/trex-master | laws2D_map.m | .m | trex-master/map/map_modules/map_laws2D/laws2D_map.m | 2,387 | utf_8 | 2e251a88ff4dc3dad0b926d93d8a13e7 | function [map] = laws2D_map(varargin)
%LAWS2D_MAP Create laws2d matrix maps
% MAP = LAWS2D_MAP(I,X,Y,Z) analyzes pixels in I. The LAWS2D and resulting features are
% calculated at the supplied points X,Y,Z. The output variable, MAP, is a
% structure with a map calculated for each LAWS2D feature.
%
% LAWS2DS =... |
github | spkrafft/trex-master | hist_map.m | .m | trex-master/map/map_modules/map_hist/hist_map.m | 2,368 | utf_8 | 3aacac60519bcc9cfab6e133cb99f176 | function [map] = hist_map(varargin)
%HIST_MAP Create histogram matrix maps
% MAP = HIST_MAP(I,X,Y,Z) analyzes pixels in I. The HIST and resulting features are
% calculated at the supplied points X,Y,Z. The output variable, MAP, is a
% structure with a map calculated for each HIST feature.
%
% HISTS = HIST_MAP... |
github | spkrafft/trex-master | glrlm_map.m | .m | trex-master/map/map_modules/map_glrlm/glrlm_map.m | 10,378 | utf_8 | f7eee1c0453863d970e2fbb1a7c380c9 | function [map] = glrlm_map(varargin)
%GLRLM_MAP Create gray-level run length matrix maps
% MAP = GLRLM_MAP(I,X,Y,Z) analyzes pairs of adjacent
% pixels in a scaled version of I. The GLRLM and resulting features are
% calculated at the supplied points X,Y,Z. The output variable, MAP, is a
% structure with a m... |
github | spkrafft/trex-master | glcm_map.m | .m | trex-master/map/map_modules/map_glcm/glcm_map.m | 11,860 | utf_8 | 9f8f5e159a78d906860d304eaf790a29 | function [map] = glcm_map(varargin)
%GLCM_MAP Create gray-level co-occurrence matrix maps
% MAP = GLCM_MAP(I,X,Y,Z) analyzes pairs of horizontally adjacent
% pixels in a scaled version of I. The GLCM and resulting features are
% calculated at the supplied points X,Y,Z. The output variable, MAP, is a
% struct... |
github | spkrafft/trex-master | shape_map.m | .m | trex-master/map/map_modules/map_shape/shape_map.m | 3,949 | utf_8 | d99572f25a919d0b2fda80fb4be84477 | function [map] = shape_map(varargin)
%SHAPE_MAP Create shape specific feature matrix maps
% MAP = SHAPE_MAP(mask,X,Y,Z) analyzes pixels in I. The SHAPE and resulting features are
% calculated at the supplied points X,Y,Z. The output variable, MAP, is a
% structure with a map calculated for each SHAPE feature.
%... |
github | spkrafft/trex-master | ngtdm_map.m | .m | trex-master/map/map_modules/map_ngtdm/ngtdm_map.m | 8,634 | utf_8 | 90db4e58f6779cfac9c4c8d6738453f8 | function [map] = ngtdm_map(varargin)
%NGTDM_MAP Create neighborhood gray tone difference matrix maps
% MAP = NGTDM_MAP(I,X,Y,Z) analyzes a scaled
% version of I and computes a one-dimensional matrix for an image in
% which the ith entry is a summaton of the differences between the gray
% level of all pixels w... |
github | spkrafft/trex-master | compare_mapX.m | .m | trex-master/map/map_comparison/compare_mapX.m | 5,934 | utf_8 | d0595714f2ff03c178bd802218a39843 | function [ccc, spear, mapRead] = compare_mapX(varargin)
[project_path,module,block_size,overlap,shift,preprocess,bd,dist,offset] = ParseInputs(varargin{:});
%%
[mapRead] = read_mapX(project_path,module);
if isfield(mapRead,'parameter_block_size')
ind_block_size = strcmpi(mapRead.parameter_block_size,block_size);... |
github | spkrafft/trex-master | ccc_mapX.m | .m | trex-master/map/map_comparison/ccc_mapX.m | 1,146 | utf_8 | 67ea01ebaecba8e5704eb4764cd06fec | function [ccc] = ccc_mapX(img1,img2)
v1 = img1(:);
v2 = img2(:);
ind = isnan(v1);
ind2 = isnan(v2);
if ~isequal(ind,ind2)
error('here')
end
v1(ind) = [];
v2(ind) = [];
ccc = corr_ccc_mapX([v1,v2]);
clearvars -except ccc
%--------------------------------------------------------------------------
function [rc... |
github | spkrafft/trex-master | outcome_compare_dosemapX.m | .m | trex-master/map/map_comparison/outcome_compare_dosemapX.m | 4,795 | utf_8 | 3d16e16a9a7e69d7345258b6a9fa1be8 | function [out,ccc,spear] = outcome_compare_dosemapX(project_path,module,feature,patient_mrn,outcome,varargin)
[block_size,overlap,shift,preprocess,bd,dist,offset] = ParseInputs(varargin{:});
%%
[mapRead] = read_mapX(project_path,module,false);
if isfield(mapRead,'parameter_block_size')
ind_block_size = strcmpi(m... |
github | spkrafft/trex-master | compare_ctX.m | .m | trex-master/map/map_comparison/compare_ctX.m | 4,764 | utf_8 | c6bd9208e9ad1ad7f003a12fb0fe616a | function [ccc, spear, mapRead] = compare_ctX(varargin)
[project_path,module,block_size,overlap,shift,preprocess,bd,dist,offset] = ParseInputs(varargin{:});
%%
[mapRead] = read_mapX(project_path,module);
if isfield(mapRead,'parameter_block_size')
ind_block_size = strcmpi(mapRead.parameter_block_size,block_size);
... |
github | spkrafft/trex-master | outcome_compare_mapX.m | .m | trex-master/map/map_comparison/outcome_compare_mapX.m | 4,652 | utf_8 | 94d2ab24ebd53be624af5418b77cba6f | function [out,ccc,spear] = outcome_compare_mapX(project_path,module,feature,patient_mrn,outcome,varargin)
[block_size,overlap,shift,preprocess,bd,dist,offset] = ParseInputs(varargin{:});
%%
[mapRead] = read_mapX(project_path,module,false);
if isfield(mapRead,'parameter_block_size')
ind_block_size = strcmpi(mapRe... |
github | spkrafft/trex-master | axes_minor1_viewerX.m | .m | trex-master/viewer/axes_minor1_viewerX.m | 11,928 | utf_8 | ac3c900562ec6dffbe3a1880327253c6 | function axes_minor1_viewerX(h)
%%
cla(h.axes_minor1)
%%
if strcmpi(h.view_minor1,'a')
img = sc(ones(size(h.img.array(:,:,h.minor1_z))),[0,1]);
roi = sc(ones(size(h.img.array(:,:,h.minor1_z))),[0,1]);
if h.imgtoggle
img = sc(h.img.array(:,:,h.minor1_z),h.range);
end
if h.roitoggle
... |
github | spkrafft/trex-master | axes_main_viewerX.m | .m | trex-master/viewer/axes_main_viewerX.m | 11,720 | utf_8 | c241ad680ccbd9da24baea2dfddae3f2 | function axes_main_viewerX(h)
%%
cla(h.axes_main)
%%
if strcmpi(h.view_main,'a')
img = sc(ones(size(h.img.array(:,:,h.main_z))),[0,1]);
roi = sc(ones(size(h.img.array(:,:,h.main_z))),[0,1]);
if h.imgtoggle
img = sc(h.img.array(:,:,h.main_z),h.range);
end
if h.roitoggle
roi ... |
github | spkrafft/trex-master | axes_minor2_viewerX.m | .m | trex-master/viewer/axes_minor2_viewerX.m | 11,910 | utf_8 | f0a1a53ab16a1cb9e3f1eabcbc2af2b9 | function axes_minor2_viewerX(h)
%%
cla(h.axes_minor2)
%%
if strcmpi(h.view_minor2,'a')
img = sc(ones(size(h.img.array(:,:,h.minor2_z))),[0,1]);
roi = sc(ones(size(h.img.array(:,:,h.minor2_z))),[0,1]);
if h.imgtoggle
img = sc(h.img.array(:,:,h.minor2_z),h.range);
end
if h.roitoggle
... |
github | spkrafft/trex-master | viewerX.m | .m | trex-master/viewer/viewerX.m | 34,312 | utf_8 | 3f364e2249ee32fc81771cf8779d6fda | function varargout = viewerX(varargin)
% VIEWERX MATLAB code for viewerX.fig
% VIEWERX, by itself, creates a new VIEWERX or raises the existing
% singleton*.
%
% H = VIEWERX returns the handle to a new VIEWERX or the handle to
% the existing singleton*.
%
% VIEWERX('CALLBACK',hObject,eventData,... |
github | MWSL-UnB/802.11-LinkSimulation-master | hsr_llrcomp.m | .m | 802.11-LinkSimulation-master/src/hsr_llrcomp.m | 6,386 | utf_8 | 1e629bbe7853cb068199391bcb7ffc69 | function y = hsr_llrcomp(x,nbpsc,sigmaw2r)
% HSR_LLRCOMP - Computes log-likelihood ratios (LLRs) for OFDM according to
% IEEE 802.11a and ETSI Hiperlan/2. The LLR computation follows
%
% F. Neeser, "OFDM: Coding Aspects", Internal Report, Rev. 1.5, 08/2000.
%
% Y = HSR_LLRCOMP(X, NBPSC, SIGMAW2R)
% computes ... |
github | MWSL-UnB/802.11-LinkSimulation-master | invraisedcos.m | .m | 802.11-LinkSimulation-master/src/invraisedcos.m | 1,078 | utf_8 | 93d1805c9d8cf8e60e32d98513bd9d83 |
function y = invraisedcos(t,W,rolloff)
% y = INVRAISEDCOS(t,W,rolloff) - Evaluates the inverse Fourier transform of a
% raised-cosine spectral shape with bandwidth W [Hz] and specified rolloff
% parameter at time instances given by vector t. The inverse Fourier
% transform is given by [Proakis, p. 338]
%
% y... |
github | PowerSystemsHIL/EPHCC-master | gen_async_cb_with_ethernet.m | .m | EPHCC-master/DistributionSystems/SimulinkOpal/Banshee/gen_async_cb_with_ethernet.m | 3,729 | utf_8 | 74237bd2b8f4b9eff34a2b07b80a6a9c | %
% OPAL-RT Technologies inc
%
% Copyright (C) 2014. All rights reserved
%
function gen_async_cb_with_ethernet(blockfullname, blockname, functionname, sourcefile, varargin);
if (evalin('base','exist(''opal_internal_generate'',''var'')') == 1)
global RtlabInfo
subsystemPathOnHost = evalin('base','subsystem_targ... |
github | PowerSystemsHIL/EPHCC-master | generic_ethernet_cb.m | .m | EPHCC-master/DistributionSystems/SimulinkOpal/Banshee/generic_ethernet_cb.m | 2,201 | utf_8 | ecfe4622b71c83cd571ec3b6c61169a7 | %
% OPAL-RT Technologies inc
%
% Copyright (C) 2014. All rights reserved
%
function [varargout]=generic_ether_ctrl_cb(action,varargin);
% get current block
if(~strcmp(lower(action),'update'))
blockName = gcb;
end
tcp_mode_ix = 13;
remote_ip_ix = 15;
protocol = get_param(gcb,'protocol');
tcp_mode = get_param(gc... |
github | PowerSystemsHIL/EPHCC-master | gen_async_cb_with_ethernet.m | .m | EPHCC-master/DistributionSystems/SimulinkOpal/Siren/gen_async_cb_with_ethernet.m | 3,729 | utf_8 | 74237bd2b8f4b9eff34a2b07b80a6a9c | %
% OPAL-RT Technologies inc
%
% Copyright (C) 2014. All rights reserved
%
function gen_async_cb_with_ethernet(blockfullname, blockname, functionname, sourcefile, varargin);
if (evalin('base','exist(''opal_internal_generate'',''var'')') == 1)
global RtlabInfo
subsystemPathOnHost = evalin('base','subsystem_targ... |
github | PowerSystemsHIL/EPHCC-master | generic_ethernet_cb.m | .m | EPHCC-master/DistributionSystems/SimulinkOpal/Siren/generic_ethernet_cb.m | 2,201 | utf_8 | ecfe4622b71c83cd571ec3b6c61169a7 | %
% OPAL-RT Technologies inc
%
% Copyright (C) 2014. All rights reserved
%
function [varargout]=generic_ether_ctrl_cb(action,varargin);
% get current block
if(~strcmp(lower(action),'update'))
blockName = gcb;
end
tcp_mode_ix = 13;
remote_ip_ix = 15;
protocol = get_param(gcb,'protocol');
tcp_mode = get_param(gc... |
github | PowerSystemsHIL/EPHCC-master | gen_async_cb_with_ethernet.m | .m | EPHCC-master/DistributionSystems/SimulinkOpal/Canary/gen_async_cb_with_ethernet.m | 3,729 | utf_8 | 74237bd2b8f4b9eff34a2b07b80a6a9c | %
% OPAL-RT Technologies inc
%
% Copyright (C) 2014. All rights reserved
%
function gen_async_cb_with_ethernet(blockfullname, blockname, functionname, sourcefile, varargin);
if (evalin('base','exist(''opal_internal_generate'',''var'')') == 1)
global RtlabInfo
subsystemPathOnHost = evalin('base','subsystem_targ... |
github | PowerSystemsHIL/EPHCC-master | generic_ethernet_cb.m | .m | EPHCC-master/DistributionSystems/SimulinkOpal/Canary/generic_ethernet_cb.m | 2,201 | utf_8 | ecfe4622b71c83cd571ec3b6c61169a7 | %
% OPAL-RT Technologies inc
%
% Copyright (C) 2014. All rights reserved
%
function [varargout]=generic_ether_ctrl_cb(action,varargin);
% get current block
if(~strcmp(lower(action),'update'))
blockName = gcb;
end
tcp_mode_ix = 13;
remote_ip_ix = 15;
protocol = get_param(gcb,'protocol');
tcp_mode = get_param(gc... |
github | PowerSystemsHIL/EPHCC-master | gen_async_cb_with_ethernet.m | .m | EPHCC-master/CaseStudies/SimulinkOpal/SYMP2015_R2013a/gen_async_cb_with_ethernet.m | 3,729 | utf_8 | 74237bd2b8f4b9eff34a2b07b80a6a9c | %
% OPAL-RT Technologies inc
%
% Copyright (C) 2014. All rights reserved
%
function gen_async_cb_with_ethernet(blockfullname, blockname, functionname, sourcefile, varargin);
if (evalin('base','exist(''opal_internal_generate'',''var'')') == 1)
global RtlabInfo
subsystemPathOnHost = evalin('base','subsystem_targ... |
github | PowerSystemsHIL/EPHCC-master | generic_ethernet_cb.m | .m | EPHCC-master/CaseStudies/SimulinkOpal/SYMP2015_R2013a/generic_ethernet_cb.m | 2,201 | utf_8 | ecfe4622b71c83cd571ec3b6c61169a7 | %
% OPAL-RT Technologies inc
%
% Copyright (C) 2014. All rights reserved
%
function [varargout]=generic_ether_ctrl_cb(action,varargin);
% get current block
if(~strcmp(lower(action),'update'))
blockName = gcb;
end
tcp_mode_ix = 13;
remote_ip_ix = 15;
protocol = get_param(gcb,'protocol');
tcp_mode = get_param(gc... |
github | PowerSystemsHIL/EPHCC-master | UnitTest_Breaker_Plots.m | .m | EPHCC-master/Components/SimulinkOpal/CircuitBreaker/UnitTest_Breaker_Plots.m | 2,443 | utf_8 | c418d7e246594b27fe3d05823a710315 | % Copyright (c) 2016 Massachusetts Institute of Technology
% Permission is hereby granted, free of charge, to any person obtaining a copy of this
% software and associated documentation files (the "Software"), to deal in the Software
% without restriction, including without limitation the rights to use, copy, modify,
%... |
github | PowerSystemsHIL/EPHCC-master | BESS_init_mask.m | .m | EPHCC-master/Components/SimulinkOpal/ESS/SmartInverter_nrel/BESS_init_mask.m | 938 | utf_8 | 3eb8be43f6068d2ff46bcf5488deb501 | %% Required input parameters
%CFG.Sn = 250e3; %[VA]
%CFG.fn = 60; %[Hz]
%CFG.Vn = 480; %[V]
%CFG.r_I_max; - ratio of Imax/In
function [BP] = BESS_init_mask(CFG)
%% Nominal current ratings
BP.In = CFG.Sn/(CFG.Vn/sqrt(3))/3;
BP.Imax = BP.In*CFG.r_I_max;
%% Current source inverter - voltage source based
% I... |
github | PowerSystemsHIL/EPHCC-master | relay_TCC.m | .m | EPHCC-master/Components/SimulinkOpal/Relay_nrel/relay_TCC.m | 2,209 | utf_8 | b68f704f338755d4f0978b59c2bc5020 | % Copyright (c) 2016 Massachusetts Institute of Technology
% Permission is hereby granted, free of charge, to any person obtaining a copy of this
% software and associated documentation files (the "Software"), to deal in the Software
% without restriction, including without limitation the rights to use, copy, modify, ... |
github | PowerSystemsHIL/EPHCC-master | relay_ANSI_59P_script.m | .m | EPHCC-master/Components/SimulinkOpal/Relay_nrel/relay_ANSI_59P_script.m | 1,898 | utf_8 | ee0a79bf47fee8b3be33d327aca848d5 | % Copyright (c) 2016 Massachusetts Institute of Technology
% Permission is hereby granted, free of charge, to any person obtaining a copy of this
% software and associated documentation files (the "Software"), to deal in the Software
% without restriction, including without limitation the rights to use, copy, modify, ... |
github | PowerSystemsHIL/EPHCC-master | relay_ANSI_51P_script.m | .m | EPHCC-master/Components/SimulinkOpal/Relay_nrel/relay_ANSI_51P_script.m | 2,115 | utf_8 | ee66bee807a4182b55c23bc655063a7a | % Copyright (c) 2016 Massachusetts Institute of Technology
% Permission is hereby granted, free of charge, to any person obtaining a copy of this
% software and associated documentation files (the "Software"), to deal in the Software
% without restriction, including without limitation the rights to use, copy, modify, ... |
github | PowerSystemsHIL/EPHCC-master | relay_ANSI_27P_script.m | .m | EPHCC-master/Components/SimulinkOpal/Relay_nrel/relay_ANSI_27P_script.m | 1,903 | utf_8 | d8ef246e68ef080786da99886c7271d8 | % Copyright (c) 2016 Massachusetts Institute of Technology
% Permission is hereby granted, free of charge, to any person obtaining a copy of this
% software and associated documentation files (the "Software"), to deal in the Software
% without restriction, including without limitation the rights to use, copy, modify, ... |
github | PowerSystemsHIL/EPHCC-master | relay_ANSI_50P_script.m | .m | EPHCC-master/Components/SimulinkOpal/Relay_nrel/relay_ANSI_50P_script.m | 1,817 | utf_8 | 1ec9d6ac0616bb4cd8777c96a75b1e00 | % Copyright (c) 2016 Massachusetts Institute of Technology
% Permission is hereby granted, free of charge, to any person obtaining a copy of this
% software and associated documentation files (the "Software"), to deal in the Software
% without restriction, including without limitation the rights to use, copy, modify, ... |
github | PowerSystemsHIL/EPHCC-master | relay_TCC.m | .m | EPHCC-master/Components/SimulinkOpal/Relay/relay_TCC.m | 2,209 | utf_8 | b68f704f338755d4f0978b59c2bc5020 | % Copyright (c) 2016 Massachusetts Institute of Technology
% Permission is hereby granted, free of charge, to any person obtaining a copy of this
% software and associated documentation files (the "Software"), to deal in the Software
% without restriction, including without limitation the rights to use, copy, modify, ... |
github | PowerSystemsHIL/EPHCC-master | relay_ANSI_59P_script.m | .m | EPHCC-master/Components/SimulinkOpal/Relay/relay_ANSI_59P_script.m | 1,898 | utf_8 | ee0a79bf47fee8b3be33d327aca848d5 | % Copyright (c) 2016 Massachusetts Institute of Technology
% Permission is hereby granted, free of charge, to any person obtaining a copy of this
% software and associated documentation files (the "Software"), to deal in the Software
% without restriction, including without limitation the rights to use, copy, modify, ... |
github | PowerSystemsHIL/EPHCC-master | relay_ANSI_51P_script.m | .m | EPHCC-master/Components/SimulinkOpal/Relay/relay_ANSI_51P_script.m | 2,115 | utf_8 | ee66bee807a4182b55c23bc655063a7a | % Copyright (c) 2016 Massachusetts Institute of Technology
% Permission is hereby granted, free of charge, to any person obtaining a copy of this
% software and associated documentation files (the "Software"), to deal in the Software
% without restriction, including without limitation the rights to use, copy, modify, ... |
github | PowerSystemsHIL/EPHCC-master | relay_ANSI_27P_script.m | .m | EPHCC-master/Components/SimulinkOpal/Relay/relay_ANSI_27P_script.m | 1,903 | utf_8 | d8ef246e68ef080786da99886c7271d8 | % Copyright (c) 2016 Massachusetts Institute of Technology
% Permission is hereby granted, free of charge, to any person obtaining a copy of this
% software and associated documentation files (the "Software"), to deal in the Software
% without restriction, including without limitation the rights to use, copy, modify, ... |
github | PowerSystemsHIL/EPHCC-master | relay_ANSI_50P_script.m | .m | EPHCC-master/Components/SimulinkOpal/Relay/relay_ANSI_50P_script.m | 1,817 | utf_8 | 1ec9d6ac0616bb4cd8777c96a75b1e00 | % Copyright (c) 2016 Massachusetts Institute of Technology
% Permission is hereby granted, free of charge, to any person obtaining a copy of this
% software and associated documentation files (the "Software"), to deal in the Software
% without restriction, including without limitation the rights to use, copy, modify, ... |
github | PowerSystemsHIL/EPHCC-master | gen_async_cb_with_ethernet.m | .m | EPHCC-master/Components/SimulinkOpal/UDP/gen_async_cb_with_ethernet.m | 3,729 | utf_8 | 74237bd2b8f4b9eff34a2b07b80a6a9c | %
% OPAL-RT Technologies inc
%
% Copyright (C) 2014. All rights reserved
%
function gen_async_cb_with_ethernet(blockfullname, blockname, functionname, sourcefile, varargin);
if (evalin('base','exist(''opal_internal_generate'',''var'')') == 1)
global RtlabInfo
subsystemPathOnHost = evalin('base','subsystem_targ... |
github | PowerSystemsHIL/EPHCC-master | generic_ethernet_cb.m | .m | EPHCC-master/Components/SimulinkOpal/UDP/generic_ethernet_cb.m | 2,201 | utf_8 | ecfe4622b71c83cd571ec3b6c61169a7 | %
% OPAL-RT Technologies inc
%
% Copyright (C) 2014. All rights reserved
%
function [varargout]=generic_ether_ctrl_cb(action,varargin);
% get current block
if(~strcmp(lower(action),'update'))
blockName = gcb;
end
tcp_mode_ix = 13;
remote_ip_ix = 15;
protocol = get_param(gcb,'protocol');
tcp_mode = get_param(gc... |
github | PowerSystemsHIL/EPHCC-master | UnitTest_Breaker_Plots.m | .m | EPHCC-master/Components/SimulinkOpal/CircuitBreaker_nrel/UnitTest_Breaker_Plots.m | 2,443 | utf_8 | c418d7e246594b27fe3d05823a710315 | % Copyright (c) 2016 Massachusetts Institute of Technology
% Permission is hereby granted, free of charge, to any person obtaining a copy of this
% software and associated documentation files (the "Software"), to deal in the Software
% without restriction, including without limitation the rights to use, copy, modify,
%... |
github | PowerSystemsHIL/EPHCC-master | seq_config_19.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_config_19.m | 7,118 | utf_8 | c53a2c97225e7491eb7fd643582669cf | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_gen_volt.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_gen_volt.m | 2,411 | utf_8 | 1ec43cc4f4ea2824dffff3108c80d469 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_gen_clouds.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_gen_clouds.m | 2,359 | utf_8 | 29b213cc737de0ae72d158171db5e783 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | calc_kpp7.m | .m | EPHCC-master/SimulationTools/TestSequence/calc_kpp7.m | 7,509 | utf_8 | efd6f73e08c2f12b3f4aa16dfc18179c | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_config_8.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_config_8.m | 7,418 | utf_8 | e6d0244912fc4a77444c9a3601cdfa1c | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | UDP_decode.m | .m | EPHCC-master/SimulationTools/TestSequence/UDP_decode.m | 2,377 | utf_8 | ada8560e568ac0d77f648cfad03e0400 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_config_17.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_config_17.m | 7,094 | utf_8 | 141c9f0d58cda4e172da9ac9d2d146ff | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | save_figs.m | .m | EPHCC-master/SimulationTools/TestSequence/save_figs.m | 1,842 | utf_8 | 70fd776a5f3579c5f8632c1efe25bc76 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_generate.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_generate.m | 1,432 | utf_8 | 0114b3717a805aa70d1b68dabe944125 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | init_ID.m | .m | EPHCC-master/SimulationTools/TestSequence/init_ID.m | 2,185 | utf_8 | ca47bac7e2e20f5c3fdfd34b818a0753 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_gen_freq.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_gen_freq.m | 2,458 | utf_8 | 5dc5678962ac95377198b0e439d8a08a | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | init_prices.m | .m | EPHCC-master/SimulationTools/TestSequence/init_prices.m | 1,967 | utf_8 | 73ff0dff0a8de1cf8bd4b9ad6fafd16d | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_print.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_print.m | 2,015 | utf_8 | 73b6cb726c8ed4a906c60a54477f36c9 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | calc_kpp2.m | .m | EPHCC-master/SimulationTools/TestSequence/calc_kpp2.m | 3,022 | utf_8 | 0d7fc209f3a29df417884f55b786cce6 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | calc_kpp6.m | .m | EPHCC-master/SimulationTools/TestSequence/calc_kpp6.m | 1,984 | utf_8 | d05bc924df95498bc1e0117c64294811 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_generate_all.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_generate_all.m | 5,725 | utf_8 | 3e75305d37776696b7f45eefeb964571 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_config_9.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_config_9.m | 7,176 | utf_8 | a3e0e87fb49ad364080e04a520f091ef | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_config_91.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_config_91.m | 3,968 | utf_8 | 6d6330604f4c3a8e7c381cedbce1b421 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_config_18.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_config_18.m | 7,295 | utf_8 | 3ded3c4e470c84d4634ead4579d50626 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | UDP_decode_all.m | .m | EPHCC-master/SimulationTools/TestSequence/UDP_decode_all.m | 2,365 | utf_8 | 7b514d47be8c2c300899ebffd6b212bc | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | LoadStoredData.m | .m | EPHCC-master/SimulationTools/TestSequence/LoadStoredData.m | 1,854 | utf_8 | e9aa9bd00d3ccb330d9f5372f2c08d6c | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | SelectDataStruct.m | .m | EPHCC-master/SimulationTools/TestSequence/SelectDataStruct.m | 1,723 | utf_8 | fddd2cd461a0b9f073c39c34269476c3 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_config_2.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_config_2.m | 7,502 | utf_8 | 7bd4b4c623ba41a91adace2cc3fe820e | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | PHIL_Frame.m | .m | EPHCC-master/SimulationTools/TestSequence/PHIL_Frame.m | 4,896 | utf_8 | bbfe788e5f4cec8e87dce810241ecbab | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | wsp2struct.m | .m | EPHCC-master/SimulationTools/TestSequence/wsp2struct.m | 1,637 | utf_8 | 781092fd1d4ed627cbbb61b4f61b4ae2 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | calc_kpp8.m | .m | EPHCC-master/SimulationTools/TestSequence/calc_kpp8.m | 1,811 | utf_8 | 0de4352b33b65a697c76e5a3effced94 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_config_3.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_config_3.m | 7,379 | utf_8 | 10f70ff3168532e661f05dc84d347f01 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | calc_common.m | .m | EPHCC-master/SimulationTools/TestSequence/calc_common.m | 1,744 | utf_8 | 042b2d679e8730078f14ec8dd29c8ea0 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_gen_irradiance.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_gen_irradiance.m | 2,226 | utf_8 | 9214142e95a13de0cf8c86391e143178 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_interp.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_interp.m | 3,035 | utf_8 | 5a22a296191e4220c49f40e24684a6ea | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | calc_kpp5.m | .m | EPHCC-master/SimulationTools/TestSequence/calc_kpp5.m | 4,290 | utf_8 | d7509c19e444e499ec898c08e1a468f9 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_plot.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_plot.m | 4,121 | utf_8 | efd770e44a0a879bab467c4d57845678 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_config_7.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_config_7.m | 7,397 | utf_8 | a6ca5f80abb549668fdacfe4b7b68c37 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_gen_stairs.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_gen_stairs.m | 1,869 | utf_8 | c0a336ff6d9de6ac9edd9936e079c573 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | BANSHEE_Frame.m | .m | EPHCC-master/SimulationTools/TestSequence/BANSHEE_Frame.m | 5,596 | utf_8 | 91e8d3af0b568d1d26b9735108fe2d62 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | UDP_Encode.m | .m | EPHCC-master/SimulationTools/TestSequence/UDP_Encode.m | 2,157 | utf_8 | 53fee7ea14a7ea2d65cd5335267a9574 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | calc_kpp3.m | .m | EPHCC-master/SimulationTools/TestSequence/calc_kpp3.m | 4,225 | utf_8 | 699efa0d106ee0a52cc3016edd9d6f08 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_config_1.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_config_1.m | 7,379 | utf_8 | 10f70ff3168532e661f05dc84d347f01 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | calc_kpp1.m | .m | EPHCC-master/SimulationTools/TestSequence/calc_kpp1.m | 3,827 | utf_8 | 6b2cf96811ee3fab3ec393f85bc42f01 | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | calc_kpp4.m | .m | EPHCC-master/SimulationTools/TestSequence/calc_kpp4.m | 4,489 | utf_8 | 9c625af9074a20ff52c816b49e81c21c | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | PowerSystemsHIL/EPHCC-master | seq_gen_price.m | .m | EPHCC-master/SimulationTools/TestSequence/seq_gen_price.m | 1,662 | utf_8 | db2e6a63f0d13804b2fc75174ce9cdef | %% Copyright 2018 Alliance for Sustainable Energy, LLC
%
% Permission is hereby granted, free of charge, to any person obtaining a copy of this software
% and associated documentation files (the "Software"), to deal in the Software without restriction,
% including without limitation the rights to use, copy, modify, m... |
github | jakovnik/uns-matlab-speech-enhancement-master | noise_est_min_stat.m | .m | uns-matlab-speech-enhancement-master/noise_est_min_stat.m | 6,899 | utf_8 | 4d4466000802eaa4e5ee67cb7d08ea2b | function [sigma_N_2, P, alpha] = noise_est_min_stat(abs_Y_2, param)
% Estimate noise spectrum using minimum statistics as proposed in [1]
%
% Inputs:
% abs_Y_2 - noisy signal PSD (one column per frame)
% param - parameters of the algorithm
% + D - number of frames in analysing window for minimum search
... |
github | cgoecknerwald/fts-matlab-plotter-master | make_fts_graph.m | .m | fts-matlab-plotter-master/make_fts_graph.m | 604 | utf_8 | 6bfd9d61a792e8f3206eaed57907f331 | %{ Run addpath('path') %}
function make_fts_graph(file)
if ~isempty(file) %{ Check that input is not empty %}
[n,p] = size(file);
t = 1:p; %{ Use a semicolon because it's long! %}
subplot(2,1,1)
plot(file(1:3,t)')
legend('F_x', 'F_y', 'F_z')
xlabel('Time (centiseconds)')
ylabel('Force (Newtons)')
title... |
github | naydden/astrea-master | cartesian.m | .m | astrea-master/Coverage_matlab/cartesian.m | 520 | utf_8 | ce1d270d5bf8ea81d97ff795ddd7b352 | % This function converts kepler orbit elements to cartesian coordinates
% a: semimajor axis
% e: eccentricity
% i: inclination [rad]
% Omega: longitude of the ascending node [rad]
% w: Argument of periapsis [rad]
% nu: True anomaly [rad]
function [X] = cartesian(a,e,i,Omega,w,nu)
% Position in cylindrical coordinate... |
github | naydden/astrea-master | cartesian2.m | .m | astrea-master/1.ENTREGA/2.Report_attachments/Attachment_6/sections/MatlabCodes/Codes/cartesian2.m | 818 | utf_8 | 4c7acb11811f4f26b84130d176fc00cc | % This function converts kepler orbit elements to cartesian coordinates
% a: semimajor axis
% e: eccentricity
% i: inclination [rad]
% Omega: longitude of the ascending node [rad]
% w: Argument of periapsis [rad]
% nu: True anomaly [rad]
function [y] = cartesian2(a,e,i,Omega,w,nu)
global mu;
% Position in cylindrical... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.