Subscript indices must either be real positive integers or logicals .. ERROR
    5 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Fatima Al Marzoqi
      
 el 9 de Jul. de 2014
  
    
    
    
    
    Comentada: Fatima Al Marzoqi
      
 el 9 de Jul. de 2014
            This is a part of my code, when I run it .. I got this message
- *{ Subscript indices must either be real positive integers or logicals.
Error in proj (line 131)
inv=inv(D+aL);
}* *
what is the problem?
D=diag(diag®); %Diagnoal
L=tril(R,-1); %Lower-Triangular matrix
U=triu(R,1); %Upper-Triangular matrix
aL=a*L; %Relaxation Factor with lower-traingular matrix
inv=inv(D+aL);
prak=(((1-a)*D)-(a*U));
B=inv*prak;
c=(a*inv)*V;
cur=I;
condition3=1;
k2=0;
Respuesta aceptada
  Azzi Abdelmalek
      
      
 el 9 de Jul. de 2014
        Your function  inv is erased by the variable inv
inv=inv(D+aL)
change it to
inv1=inv(D+al)
Más respuestas (0)
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!


