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