Tagged Questions
2
votes
2answers
425 views
Closest Point of Approach (CPA) mathematical formula in ship radar
I was recently searching for the mathematical formula to find closest point of approach (CPA) between one ship and another ship. I need to apply the formula in my radar ship program and I can't find ...
7
votes
1answer
637 views
Are there studies on what programming does to the brain? [closed]
Are there studies on what effects have programming languages on the brain or for that matter any other artificial languages in general, like mathematics ?
Speaking from my personal experience I feel ...
7
votes
6answers
1k views
Languages/Methods to Learn for Scientific Computing?:
I'm a second-semester Junior working towards a Computer Science degree with a Scientific Computing concentration and a Mathematics degree with a concentration on Applied Discrete Mathematics. So, ...
5
votes
5answers
369 views
Which language should I use for a computationaly intensive program?
This is a multi-part question. I am writing a computational intensive program that will preform computations on very large numbers, on the scale of factorial(100) . I'm considering using Java or c++ ...
7
votes
5answers
3k views
What skills are needed for machine learning jobs?
I posted this question on Quora, but didn't get enough responses. reposting it here.
I am a learner sitting at home and learning linear algebra, very interested on working in Machine Learning ...
7
votes
7answers
538 views
What is a good language to develop in for simple, yet customizable math programs?
I'm writing to ask for some guidance on choosing a language and course of action in learning programming.
I've seen thread after thread with questions from newbies, asking, "What is the best language ...
11
votes
6answers
589 views
Does any programming language use variables as they're in maths?
In maths, a variable means you can put any number there, and an equation will still be true:
root(square(x)) = abs(x)
In programming languages, this is not so: a var can change. In Python:
y = ...
2
votes
5answers
751 views
Which programming languages doesn't use operator precedence besides Lisp like languages?
And what do you think about operator precedences? Would be harder programming in language where the operations are executed in sequential order?
Ex.:
2 + 3 * 4 == 20
2 + (3 * 4) == 24
Ok, Lisp ...