필터 지우기
필터 지우기

how to add matrix and scalar

조회 수: 25 (최근 30일)
vaya putra
vaya putra 2018년 7월 25일
답변: vaya putra 2018년 7월 25일
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)

채택된 답변

KSSV
KSSV 2018년 7월 25일
There is no .+ operator in MATLAB. Simply use:
pv = @(p) pv_r+ (cr * (p - p_r))

추가 답변 (1개)

vaya putra
vaya putra 2018년 7월 25일
thank you

카테고리

Help CenterFile Exchange에서 Complex Logic에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by