File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 4444for P = pets
4545 row = row + 1 ;
4646 for j = 1 : length(category )
47- nextCell = sheet .cell(row ,col + j );
48- nextCell.value = P{1 }{j };
47+ sheet .cell(row ,col + j ,P{1 }{j });
4948 if j == 3 && P{1 }{j } < 0.1
5049 nextCell = sheet .cell(row ,col + j );
5150 nextCell.font = ft_red ;
Original file line number Diff line number Diff line change 4646for P = pets
4747 row = row + 1 ;
4848 for j = 1 : length(category )
49- nextCell = sheet .cell(row ,col + j );
50- nextCell.value = P{1 }{j };
49+ sheet .cell(row ,col + j ,P{1 }{j });
5150 if j == 3 && P{1 }{j } < 0.1
5251 nextCell = sheet .cell(row ,col + j );
5352 nextCell.font = ft_red ;
Original file line number Diff line number Diff line change 11function [module ] = imp(module_name )
22 % Abbreviaiton for py.importlib.import_module(module_name)
3- module = py .importlib .import_module(module_name )
3+ module = py .importlib .import_module(module_name );
44end
You can’t perform that action at this time.
0 commit comments