can anyone solve the following error, that comes in the below given code lines in the code of SolveHomo, in the image mosaic.
    4 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
The following error occurred converting from struct to double:
Error using double
Conversion to double from struct is not possible.
program code lines:
n = size(pts1,2);
A = zeros(2*n,9);
A(1:2:2*n,1:2) = pts1';
A(1:2:2*n,3) = 1;
A(2:2:2*n,4:5) = pts1';
A(2:2:2*n,6) = 1;
Respuestas (0)
Ver también
Categorías
				Más información sobre Dates and Time 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!


