Effacer les filtres
Effacer les filtres

Array indices must be positive integers or logical values.

6 vues (au cours des 30 derniers jours)
Mirza Sadewa
Mirza Sadewa le 18 Jan 2021
Commenté : Mirza Sadewa le 18 Jan 2021
im sorry i dont know how this can happen, can someone help me
k=[0:20:1000]
for a=1:length(k);
derivative_x(a)=2*kons_G*rho_model*t*(-(1/(z2((x(a)-x0)^2/z2^2+1)))+(1/(z1((x(a)-x0))^2/z1^2+1))); %sudah dalam mGal
derivative_z(a)=((-2*kons_G*t*rho_model*((x(a)-x0)/(z1^2+(x(a)-x0)^2)))); %sudah dalam mGal
end

Réponse acceptée

Walter Roberson
Walter Roberson le 18 Jan 2021
derivative_x(a)=2*kons_G*rho_model*t*(-(1/(z2((x(a)-x0)^2/z2^2+1)))+(1/(z1((x(a)-x0))^2/z1^2+1))); %sudah dalam mGal
MATLAB has absolutely no implied multiplication. Not even in the symbolic mathematics languages.
Therefore your z2( and z1( expressions are interpreted as requests to index z2 and z1 at calculated locations that do not happen to come out as positive integers.
  1 commentaire
Mirza Sadewa
Mirza Sadewa le 18 Jan 2021
thanks, i miss the multiplication in z2( and z1(

Connectez-vous pour commenter.

Plus de réponses (1)

Jan
Jan le 18 Jan 2021
What is z1 and z2? Are these vectors? Then the message means, that
z2((x(a)-x0)^2/z2^2+1)
is not a valid expression, because (x(a)-x0)^2/z2^2+1 is not a positive integer or logical vector.
You can identify the problem using the debugger. Set a breakpoint in the failing line and evaluate the expression piece by piece:
% 2*kons_G*rho_model*t*(-(1/(z2((x(a)-x0)^2/z2^2+1)))+(1/(z1((x(a)-x0))^2/z1^2+1)))
x(a)
(x(a)-x0)^2
(x(a)-x0)^2/z2^2+1
z2((x(a)-x0)^2/z2^2+1)
... etc

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by