Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding path of T_classProb.mat in diffusion_maps.m and updating README #19

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ $ ./run_identifier_cluster --email [email protected] --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?
Expand Down
3 changes: 2 additions & 1 deletion vocalmat_analysis/diffusion_maps.m
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down Expand Up @@ -125,4 +126,4 @@
vals2 = vals(2:m+1,2:m+1).^t;
maps = (vecs(:,2:m+1))*vals2;

end
end