how to add matrix and scalar

10 visualizaciones (últimos 30 días)
vaya putra
vaya putra el 25 de Jul. de 2018
Respondida: vaya putra el 25 de Jul. de 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)

Respuesta aceptada

KSSV
KSSV el 25 de Jul. de 2018
There is no .+ operator in MATLAB. Simply use:
pv = @(p) pv_r+ (cr * (p - p_r))

Más respuestas (1)

vaya putra
vaya putra el 25 de Jul. de 2018
thank you

Categorías

Más información sobre Complex Logic en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by