Getting "Unrecognized function or variable 'reshape'" error!!
    14 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Kumar Vishal Rai
 el 26 de Mayo de 2022
  
    
    
    
    
    Respondida: Chunru
      
      
 el 27 de Mayo de 2022
            I am running R2021b and using simple reshape function.
But Matlab is giving Unrecognized function or variable 'reshape'".
I checked for the path of this function and its present in the path values.
Any idea what could be wrong.
3 comentarios
Respuesta aceptada
  Walter Roberson
      
      
 el 27 de Mayo de 2022
        reshape([1 2 3 4],:,1);
Notice the : . : by itself can only appear (a) in comments; (b) in character vectors; (c) in string() objects; or (d) as a subscript for a variable. So in context, that code would require that "reshape" is a variable. But reshape is not a variable in your code.
Perhaps you were looking for
   reshape([1 2 3 4],[],1)
0 comentarios
Más respuestas (1)
  Chunru
      
      
 el 27 de Mayo de 2022
        %reshape([1 2 3 4],:,1);
reshape([1 2 3 4], [], 1)  % use [] for auto computed size
0 comentarios
Ver también
Categorías
				Más información sobre Logical 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!




