how to add matrix and scalar
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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)
0 comentarios
Respuesta aceptada
KSSV
el 25 de Jul. de 2018
There is no .+ operator in MATLAB. Simply use:
pv = @(p) pv_r+ (cr * (p - p_r))
0 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Complex Logic en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!