Implicit scalar expansion doesn't work in MATLAB function block.

조회 수: 2 (최근 30일)
Kaung
Kaung 2022년 8월 6일
댓글: Kaung 2022년 8월 8일
I spent quite a lot of time trying to figure out why the same piece of function runs in MATLAB but not in a MATLAB function block called by Simulink. Then, I saw this post made two years ago about how implicit scalar expansion doesn't work for MATLAB function blocks for some reason and using bsxfun is one way to get around that. I just wanted to check if there's any update on this issue.. I'd rather not write two separate versions of the same thing if I can avoid it.
function ans = fcn()
ans = ones(4,3) .^ ones(4,1);

채택된 답변

Fangjun Jiang
Fangjun Jiang 2022년 8월 8일
Good news. It seems it is available in R2021b, but not in R2021a. Check
  댓글 수: 2
Rik
Rik 2022년 8월 8일
Although since there are no plans to remove bsxfun, you can safely write the one version with that.
And @Kaung, please don't use ans as a variable. Those code tricks you learn from Cody are terrible in every other situation.
Kaung
Kaung 2022년 8월 8일
Thanks @Fangjun Jiang and @Rik for the inputs!
I just copied and pasted the code with ans :D

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Simulink Functions에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by