mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2026-05-11 18:02:46 +00:00
9 lines
165 B
Matlab
9 lines
165 B
Matlab
clear all; close all; clc;
|
|
|
|
addpath(genpath('.'));
|
|
dirlist = dir('tests/test_*');
|
|
for i = 1:length(dirlist)
|
|
name = dirlist(i).name(1:end-2);
|
|
feval(name)
|
|
end
|