Click here to Skip to main content
15,922,166 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I need some ideas how to use Maxima commands in C#
Posted

1 solution

I am not sure exactly what you are after.
Assuming you want Max value of some sequence of numbers

List<int> f1 = new List<int>();
int maxValue = f1.Max();
Same goes for
int[] f2 .....
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900