tags:

views:

25

answers:

1

Hello, how to retrieve the data from m.file into another m.file? How to compare these two files?

+1  A: 

Referring to these posts matlab comes with a diff tool on board, offering an API.

com.mathworks.mde.difftool.DiffReportGroup.getInstance.showFileDiff(...
     filePathLeft, filePathRight, numColumns);
showUnsavedChangesDiff(filePathLeft,textString,numColumns)

See the referred posts for further details.

zellus

related questions