Hello guys,
Am a maths student, and want to develop a maths library (dll) that can be used both on desktop app and asp.net webpage. The maths library will receive maths question, solve it and return the answers. here are my questions.
Is there any free library that you know that solves maths that i can use?
Is possible to call a dll from asp.net webpage?
Multiple users will be accessing the website thus calling the dll many times, id using the dll better compared to javascript or php?
if am to implement an explanation dll(a dll that explains step by step how the answer was derived), what is the best options to do this?
for now am focusing on basic math only(arithmetic, fractions, decimals etc)
please i need your opinions
1 reply to this topic
#1
Posted 24 May 2010 - 12:12 PM
|
|
|
#2
Posted 26 May 2010 - 03:59 AM
avosoft said:
Hello guys,
Is there any free library that you know that solves maths that i can use?
Is there any free library that you know that solves maths that i can use?
Quote
Is possible to call a dll from asp.net webpage?
Quote
Multiple users will be accessing the website thus calling the dll many times, id using the dll better compared to javascript or php?
Quote
if am to implement an explanation dll(a dll that explains step by step how the answer was derived), what is the best options to do this?
ex:
public int add(int num1,int num2)
{
lblMessage.Text = "A:"[COLOR=DarkOrange]+num1+[/COLOR]" + " B:"[COLOR=DarkOrange]+num2+[/COLOR]"="[COLOR=DarkOrange]+(num1+num2)[/COLOR];
return num1+num2;
}
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users


Sign In
Create Account


Back to top









