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)

 Akzeptierte Antwort

KSSV
KSSV am 25 Jul. 2018

0 Stimmen

There is no .+ operator in MATLAB. Simply use:
pv = @(p) pv_r+ (cr * (p - p_r))

Weitere Antworten (1)

Kategorien

Tags

Gefragt:

am 25 Jul. 2018

Beantwortet:

am 25 Jul. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by