how to manipulate function hundles ?
이전 댓글 표시
when trying to manipulate function hundles (@) by devision for example, I get the message "Undefined operator '/' for input arguments of type 'function_handle'."
댓글 수: 1
Image Analyst
2016년 5월 5일
The Crystal Ball Toolbox has not yet been released, so until then, you'll need to read this link before we can answer you.
답변 (1개)
Star Strider
2016년 5월 5일
Don’t refer to the function handles, but to the functions themselves in your calculations:
f = @(x) x.^2;
g = @(y) sin(y);
t = 1:10;
q = f(t)./g(t);
카테고리
도움말 센터 및 File Exchange에서 Antennas and Electromagnetic Propagation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!