summaryrefslogtreecommitdiff
path: root/2510/CH27/EX27.15/Ex27_15.sce
blob: e2cee42fe50bc536773cc6d2f08b4cb4eb0f8d69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Key:
//f(x) : Objective Function
//ci(x)'s : Constraints

//Variable Declaration:
function [ans] = f(x)
    ans = -1.70*x(1) - 2*x(2)
endfunction

//Calculation
X = [7500,6000]

//Result:
printf("Maximum Profit is $ %.1f /day or $ %.1f /year",-f(X),-365*f(X))