Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
what is the problem with my function?
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
i'm having a problem with my function..
function[T,S]=MCDK(X)
then it says "ERROR; Function definitions are not permitted in this context"
0 comentarios
Respuestas (1)
  Azzi Abdelmalek
      
      
 el 5 de Ag. de 2015
        I suppose you are trying to run
function[T,S]=MCDK(X)
The correct way is
[T,S]=MCDK(X)
0 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

