From 3d424e27d6014ef6b6cb7e90dce33a9620e55115 Mon Sep 17 00:00:00 2001 From: Raghavendra Kaushik <44907757+rakaar@users.noreply.github.com> Date: Fri, 30 Jun 2023 13:31:19 +0530 Subject: [PATCH 1/2] Added T_classProb.mat path in diffusion_maps Without this running VocalMat returns an error "Dot indexing is not supported" when diffusion_maps is tried to run using run command --- vocalmat_analysis/diffusion_maps.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vocalmat_analysis/diffusion_maps.m b/vocalmat_analysis/diffusion_maps.m index 214a230..d55fcef 100644 --- a/vocalmat_analysis/diffusion_maps.m +++ b/vocalmat_analysis/diffusion_maps.m @@ -9,6 +9,7 @@ % -- Copyright (c) 2020 Dietrich Lab - Yale University % ---------------------------------------------------------------------------------------------- +load(strcat(vfile, '\T_classProb.mat')); T_classProb_orig = T_classProb; T_classProb(strcmp(T_classProb.DL_out,'noise_dist'),:)=[]; %Remove noise T_classProb.DL_out(strcmp(T_classProb.DL_out,'chevron'))={1}; @@ -125,4 +126,4 @@ vals2 = vals(2:m+1,2:m+1).^t; maps = (vecs(:,2:m+1))*vals2; -end \ No newline at end of file +end From 9ae34e8bc528100fffa73c3728ff98437cd2eade Mon Sep 17 00:00:00 2001 From: Raghavendra Kaushik <44907757+rakaar@users.noreply.github.com> Date: Fri, 30 Jun 2023 13:32:31 +0530 Subject: [PATCH 2/2] Added control system toolbox in README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index db025c0..881ff80 100644 --- a/README.md +++ b/README.md @@ -171,6 +171,7 @@ $ ./run_identifier_cluster --email your@email.com --cores 4 --mem 128 --time 600 - Deep Learning Toolbox - Image Processing Toolbox - Statistics and Machine Learning Toolbox + - Control System Toolbox ## FAQ - Will `VocalMat` work with my MATLAB version?