LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
map_issym.m
1function [TF] = map_issym(MAP)
2% Returns 1 if the MAP or MMAP is symbolic, 0 otherwise.
3
4TF = 0;
5
6for i = 1:length(MAP)
7 if strcmp(class(MAP{1}),'sym')
8 TF = 1;
9 return
10 end
11end