AFC Toolbox and converting pfiles to mfiles [closed] - matlab

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Has anyone ever worked with AFC toolbox?
Is there a way to convert pfiles to mfiles?

Never heard of the AFC toolbox, and no, you cannot reverse-engineer p-coded files back into MATLAB files, see http://www.mathworks.co.uk/help/matlab/matlab_prog/protect-your-source-code.html for more details.

Related

Enabling Multiplayer Service in Unity [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
Can anyone provide me the solution of how to overcome the event in the black label in the given image??
Here I want to remove the pop-up:- "UNet-powered features are in the process of being deprecated".Can anyone help me as to how to proceed??
UNet is deprecated. You should use alternatives such as Mirror or Photon.

how does the histogram of optical flow work? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I surf the web for HOF implementation in matlab or openCV. Actually I wanted to know how to write their code in matlab. I learned something from the link bellow about HOG but I cannot find the same proper link for HOF or MBH. Is there any syntax for HOF in openCV?
http://www.learnopencv.com/histogram-of-oriented-gradients/
I dont know about OpenCV, but find matlab implementations here.

Group Algebra in Matlab [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
What is the best way to implement group algebra using Matlab. More specifically, I only want to work with permutation groups (and their subgroups) but would like a way to find kernels and cosets without coding a brute force version myself.
GAP is a 'System for Computational Discrete Algebra' and is able to do all the things requested in the question.

C-DLL to be used by MATLAB? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Since MATLAB is not good with loop, I am putting some of the looping into a c-dll(visual studio 6.0).
What do I have to do in building the c-dll that is different than
normal dlls?
How do I interface with the DLL from MATLAB?
I recommend making them into MEX-functions. Read the MATLAB help: http://www.mathworks.co.uk/help/techdoc/matlab_external/f29322.html.
And FWIW, MATLAB's fine at looping if you write your code well.

comparing data stored in two m-files [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
how to retrieve the data from m.file into another m.file?
How to compare these two files?
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.