Strange limitations on script files?

Just wanted to clarify: Are there specific reasons to enforce scripts to
  • have function definitions only at the end of the file
  • disallow classdef in script files
?
This feels especially unnatural in live scripts, where it disallows naturally adding functions or data structures in the course of the document.

1 comentario

dpb
dpb el 22 de Sept. de 2023
I have absolutely no inside knowledge, but I would presume the reason is to make the parsing/compilation of code simpler by minimizing complexity.

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 23 de Sept. de 2023

0 votos

  • Not allowing function definitions in the middle of a script file removes ambiguity about whether code after a function definition is there accidentally (such as if there is an extra end in the code)
  • requiring that classdef be the only (non-comment) thing in the file removes ambiguity about what exactly is executed when the class is defined or invoked.

Categorías

Más información sobre Function Creation en Centro de ayuda y File Exchange.

Productos

Versión

R2023a

Preguntada:

el 22 de Sept. de 2023

Respondida:

el 23 de Sept. de 2023

Community Treasure Hunt

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

Start Hunting!

Translated by