Create Array in Simulink
조회 수: 4 (최근 30일)
이전 댓글 표시
Hello
I want to create an array in Simulink based on two constants. Like using "linspace(1,1,10)" in Matlab, but from two constant blocks of magnitude "1" and "10".
Thanks in Advance
댓글 수: 0
답변 (1개)
Azzi Abdelmalek
2015년 8월 9일
댓글 수: 2
Azzi Abdelmalek
2015년 8월 10일
function y = fcn(u)
%#codegen
coder.extrinsic('linspace')
y = coder.nullcopy(zeros(1,numel(u)));
y =linspace(1,u, u)
Don't forget to declare the output y (type edit data in the editor of your function) as variable size.
참고 항목
카테고리
Help Center 및 File Exchange에서 Sources에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!