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

small fix int the path_ind doc string #3

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions assets/downloads/vhm/VHM_SIM_init.m
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
set(Config.Table_node,'ColumnWidth',{55,50,50,50,50,50,50,50,20});
set(Config.Table_node,'ColumnEditable',[true true true true true true true true true]);

% path_ind={'Idle','Ante','Retro','Double','Conflict'};
% path_ind={'Idle','Ante','Retro','Conflict','Double'};
Config.Table_path=uitable('Position',[570,250,480,200],'BackgroundColor',[1,1,1],'CellEditCallback',@para_edit);
set(Config.Table_path,'ColumnName',{'Name','State','En','Ex','Amp','An_s','Re_s','An_c','An_d','Re_c','Re_d'},'RowName','numbered');
% set(Config.Table_path,'ColumnFormat',{[],path_ind,node_table(:,1)',node_table(:,1)',[],[],[]});
Expand Down Expand Up @@ -96,7 +96,7 @@ function para_edit(hObject,eventdata,handles)
global probe_table
global Config

% path_ind={'Idle','Ante','Retro','Double','Conflict'};
% path_ind={'Idle','Ante','Retro','Conflict','Double'};

switch hObject
case Config.Table_node
Expand Down