How can I get a profit function P(x,y) using a cost function C(x,y) and a revenue function R(x,y)
조회 수: 3 (최근 30일)
이전 댓글 표시
So I have 2 multivariable functions, one for cost and one for revenue, and I need to get a profit function. So how do I input a command that basically subtracts the cost function form the revenue function.
R(x,y) = 6xy + x^2
C(x,y) = 2xy+3x^2+y^4
답변 (1개)
VBBV
2022년 11월 27일
편집: VBBV
2022년 11월 27일
x = 1; y = 1; % assume some input values
R = @(x,y) 6*x.*y + x.^2; % use funciton handle to define the equations
C = @(x,y) 2*x.*y+3*x.^2+y.^4;
P = R(x,y) - C(x,y) % apply the profit equation
댓글 수: 1
VBBV
2022년 11월 27일
syms x y % if you have symbolic toolbox access
R(x,y) = 6*x.*y + x.^2;
C(x,y) = 2*x.*y+3*x.^2+y.^4;
P(x,y) = R(x,y) - C(x,y)
참고 항목
카테고리
Help Center 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!