How to assign negative values to a variable
140 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
vetri veeran
le 7 Août 2014
Commenté : Star Strider
le 7 Août 2014
I am getting an error as like this.
Subscript indices must either be real positive integers or logicals.
my code is,
V = -60
am(V)=(0.01*(V+50))/(1-exp(-(V+50)/10))
but i need to pass V=-60 to am(V). how can i pass this.
Can anyone answer for this. Thanks in advance.
1 commentaire
Yu Jiang
le 7 Août 2014
It would be more helpful if you could explain what objective you are trying to achieve. It seems like am(V) is a function of V and you would like to get the value of the function at V = -60. If that is the case, you may need to define the function first before passing a value into it.
Réponse acceptée
Star Strider
le 7 Août 2014
Modifié(e) : Star Strider
le 7 Août 2014
V = -60
am = @(V) (0.01*(V+50))/(1-exp(-(V+50)/10));
amV = am(V)
produces:
amV =
58.1977e-003
2 commentaires
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!