For this type of problem, you should contact Tech Support. Use http://support.sas.com/ctx/supportform/createForm to enter the problem. To properly diagnose, you will need to provide the PROC NLP call and any data.
... View more
Can you clarify: are you asking how to take information from a file or data set and use it to change the problem below? Take data and create an LP file? Or something else?
... View more
PROC MODEL is part of SAS/ETS. If you pose your question in the SAS Forecasting forum
http://support.sas.com/forums/forum.jspa?forumID=28
they should be able to help.
... View more
You're quite close to what you need:
[pre]data _null_;
c = .5;
x = pdf('NORMAL', c, 0, 1);
y = pdf('NORMAL', c);
put x= y=;
run;[/pre]
"<,p1, p2>" denotes optional parameters in the function declaration.
... View more