how to solve the error "Unrecognized function or variable ".
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Rami Ahmed
el 17 de Sept. de 2021
Comentada: Rami Ahmed
el 17 de Sept. de 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,0 comentarios
Respuesta aceptada
Cris LaPierre
el 17 de Sept. de 2021
Editada: Cris LaPierre
el 17 de Sept. de 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
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 comentarios
Cris LaPierre
el 17 de Sept. de 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/
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
