We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35d875e commit a5fc207Copy full SHA for a5fc207
evalMD.m
@@ -1,14 +1,11 @@
1
function mdContents = evalMD()
2
fclose all; clc;
3
-% Setup Plotly in Offline Mode
4
-% addpath(genpath('D:\Matlab_code\plotly_matlab\plotly'));
5
-addpath(genpath('plotly_matlab/plotly/'));
6
7
% Let list of md files
8
fileList = dir('matlab/*.md');
9
10
% Loop over all files
11
-for i = 44%1 :length(fileList)
+for i = 45%1 :length(fileList)
12
fileName = fullfile(fileList(i).folder,fileList(i).name);
13
fprintf('Evaluating (%03d): %s\n',i,['matlab/',fileList(i).name]);
14
mdContents = readlines(fileName,'Encoding','UTF-8');
0 commit comments