commit 495e93f4fefdf8d8cedd0fedb2d5be066599e9cf
parent c5e981c4c7ceb8e350fd21079f3d6ee5aef64f8a
Author: mcol <mcol@posteo.net>
Date: Mon, 29 Oct 2018 19:09:45 +0000
fixed extension for built in functions being called in op.m
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/op.m b/op.m
@@ -73,7 +73,8 @@ switch existence
case 5
% name is a built in function
path = split(which(name), {'(', ')'});
- file = which(path{2});
+ file = [path{2} '.m'];
+ %file = path{2};
case 6
% name is a matlab p-code file