Array as an input
조회 수: 4 (최근 30일)
이전 댓글 표시
I have an input A into a function and I want to define the function as a 3-by-4 matrix. How do I write the input?
댓글 수: 0
답변 (1개)
the cyclist
2017년 9월 24일
Define the function like this
function [out_stuff] = fa(in_stuff)
out_stuff = 2*in_stuff; % Or whatever
end
Call it like this:
A = rand(3,4);
outA = fa(A);
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!