how to solve the error "Unrecognized function or variable ".

102 vues (au cours des 30 derniers jours)
Rami Ahmed
Rami Ahmed le 17 Sep 2021
Commenté : Rami Ahmed le 17 Sep 2021
, I have this code and its gave me a solution of my proplem and the solution must satiesfied the condition of the sum( the condition of the sum is the sum of the number are linked together with this line must different for every time and we must have no repeated sum) like the photo below.
the variable N : is the rows number , M : the columns number and P : is the number of solution must appear, when I run the code error appear, the error is "Unrecognized function or variable 'seq'." for anyone can help if you can solve it do it please,

Réponse acceptée

Cris LaPierre
Cris LaPierre le 17 Sep 2021
Modifié(e) : Cris LaPierre le 17 Sep 2021
The error suggests your code either can't find a function you use (it is not in the current folder or on the MATLAB path), or you are trying to use a variable that does not exist.
a = seq
Unrecognized function or variable 'seq'.
Your function returns a variable seq, so I suspect in your case it is the 2nd issue causing the error. A quick glance shows that seq is created in if statements, so what is likely happening is that your condition is never true, so seq is never created.
if Test=='T'
seq(:,:,v) = ...
  7 commentaires
Cris LaPierre
Cris LaPierre le 17 Sep 2021
Practice!
If you need help getting started, a great first step is MATLAB Onramp. In 2 hours, you will learn the basics of MATLAB. From there, explore other courses you may have access to here: https://matlabacademy.mathworks.com/
Rami Ahmed
Rami Ahmed le 17 Sep 2021
Thanks alot you are the best🌹🌹

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by