How can I protect a public script from being changed?

I write scripts that I would like other Matlab users to run but I do not want them to be able to modify it. Is there a way to protect a script that I make public?

1 Comment

doc pcode
can probably help with this if you turn it into a function.

Sign in to comment.

 Accepted Answer

Perhaps convert your code to p-code to discourage modifying your codes. It is NOT a full protection for modifying your codes though.
Complete protection against modification is tricky. This would require compiling your code via something like mcc, and if you really want, adding some security checks against modification / reverse engineering (that's above my skill set). But then, its not really usable via Matlab sessions.
I think p-code is what you're aiming for.

More Answers (1)

Categories

Find more on MATLAB Compiler in Help Center and File Exchange

Products

Release

R2012a

Asked:

on 7 Aug 2018

Edited:

on 7 Aug 2018

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!