how to add matrix and scalar
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
vaya putra
le 25 Juil 2018
Réponse apportée : vaya putra
le 25 Juil 2018
Hi Matlab User i want to used how to write
pv = @(p) pv_r.+ (cr * (p - p_r) )
Unexpected MATLAB operator.
note; pv_r (matrix 1000*1)
0 commentaires
Réponse acceptée
KSSV
le 25 Juil 2018
There is no .+ operator in MATLAB. Simply use:
pv = @(p) pv_r+ (cr * (p - p_r))
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Complex Logic 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!