Is it possible to make inactive some of lines?

3 vues (au cours des 30 derniers jours)
Volkan Yangin
Volkan Yangin le 8 Juil 2021
Commenté : Bruno Luong le 8 Juil 2021
Assume that
A = [a*b;... %line 1
a*b^2;... %line 2
a*b^3;... %line 3
]
Is it possible to generate a command to make inactive any line, for ex. line 2 like:
A = [a*b;... %line 1
%a*b^2;... %line 2
a*b^3;... %line 3
]
Thanks,
  2 commentaires
KSSV
KSSV le 8 Juil 2021
In which contest it is? You cannot do that, it will throw an error.
Volkan Yangin
Volkan Yangin le 8 Juil 2021
The question is related with my problem given in link:
I have to generate a formula according to any number. It is so easy in MATLAB, but SIMULINK gives me a lot of error when i implement this code.

Connectez-vous pour commenter.

Réponses (1)

Bruno Luong
Bruno Luong le 8 Juil 2021
Put "..." (without the quotes) in front of the lines you want to hide
  3 commentaires
Bruno Luong
Bruno Luong le 8 Juil 2021
Please explain of adding/removing "..." to hide/disable the lines is not suitaable for your need.
Bruno Luong
Bruno Luong le 8 Juil 2021
Just to be sure you understand what I wrote
A = [a*b;... %line 1
... a*b^2; ... %line 2
a*b^3;... %line 3
]

Connectez-vous pour commenter.

Catégories

En savoir plus sur Startup and Shutdown dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by