Defining a projection function
조회 수: 9 (최근 30일)
이전 댓글 표시
I have defined a function of three variables
function a = test(A,B,C)
a = A.*power(B,0.3).*power(C,0.7);
end
Now I want to define a function test2 that is a function test2 that is a single variable function of C with A=1 and B=10. Please advise.
댓글 수: 0
채택된 답변
추가 답변 (1개)
Jan
2018년 5월 12일
function a = test2(C)
A = 1;
B = 10;
a = A .* power(B, 0.3) .* power(C, 0.7);
end
Or easier:
function a = test2(C)
a = 1.99526231496888 .* power(C, 0.7);
end
I suggest, that you try to solve such questions by your own at first and to post the code. You can learn more from the suggestions for improvements than from code, which have been written by others from scratch.
참고 항목
카테고리
Help Center 및 File Exchange에서 Assembly에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!