Coder Social home page Coder Social logo

More Features about math-as-code HOT 17 OPEN

jam3 avatar jam3 commented on August 31, 2024
More Features

from math-as-code.

Comments (17)

cihadturhan avatar cihadturhan commented on August 31, 2024 6

I didn't want to open a new issue. Instead, I'm adding here:

function clamp(a,b,c){
  return Math.max(b,Math.min(c,a));
}

function smoothstep(edge0, edge1, x)
{
    // Scale, bias and saturate x to 0..1 range
    x = clamp((x - edge0)/(edge1 - edge0), 0.0, 1.0); 
    // Evaluate polynomial
    return x*x*(3 - 2*x);
}
  • Angle conversions e.g. degree to radian
// Converts from degrees to radians.
Math.radians = function(degrees) {
  return degrees * Math.PI / 180;
};

// Converts from radians to degrees.
Math.degrees = function(radians) {
  return radians * 180 / Math.PI;
};
  • Spherical to cartesian etc
function sph2cart(vect) {
            //r, theta, phi
            var z = vect.x * Math.sin(vect.z);
            var rcoselev = vect.x * Math.cos(vect.z);
            var x = rcoselev * Math.cos(vect.y);
            var y = rcoselev * Math.sin(vect.y);
            return new THREE.Vector3(x, y, z);
        }
    };

from math-as-code.

avdi avatar avdi commented on August 31, 2024 2

This is a super cool project.

Something that baffled me when first reading FP literature was the frequent use of "prime" notation: e.g. an equation that contained both a and a' and sometimes even a''. It took me a while just to figure out what this was called.

Also, in general I have trouble grokking something if I can't "read it aloud" in my head. So any guidance for how to say notation is greatly helpful for people like me.

from math-as-code.

 avatar commented on August 31, 2024 2

I would love to see a "numerical math" section which presents operators such as integrals, derivatives, gradients and laplacians etc.

I would love too.

Things with limits (derivatives, integrals, infinity) are going to be tough to translate into code.

Exactly because they're tough to translate it's necessary to show even a few examples to give people idea how they can understand it.

I agree, operators with limits, infinites and infinitesimals sometimes seem borderline magic and hard to grasp. That's why I think that seeing how they operate on discrete functions (aka arrays) is so helpful, because more often than not they are pretty trivial things with fancy names.

Totally agree!

from math-as-code.

daemonna avatar daemonna commented on August 31, 2024 1

i would like to see matrix algebra features like transpose, complex conjugate, etc.. as matrices are real big deal :) and don't forget there are also other algebras than Gibbs (Clifford, etc)...

from math-as-code.

JavDevGames avatar JavDevGames commented on August 31, 2024

+1 for indefinite integrals

I'd also vote for the laplace operator

Inspiring guide so far!

from math-as-code.

mattdesl avatar mattdesl commented on August 31, 2024

@cihadturhan cheers, I will consider those. I eventually hope to have another part of the repo that holds "practical examples" (aimed at graphics programming), and it might include turning equations into, say, GLSL built-ins like sign, step and smoothstep.

@avdi thanks for the feedback. See #5 which includes prime 😄

from math-as-code.

JavDevGames avatar JavDevGames commented on August 31, 2024

Dunno if this might interest you, but I found this website the other day: http://visualgo.net/ and the way they present their explanations is makes it seem really simple to understand (though they could use a bit less pseudocode IMHO)

from math-as-code.

tiborsaas avatar tiborsaas commented on August 31, 2024

Here's a huge list of math symbols:
https://en.wikipedia.org/wiki/List_of_mathematical_symbols

from math-as-code.

richjames0 avatar richjames0 commented on August 31, 2024

this is excellent - thanks!

i think it would be really helpful to see example (simple) implementations of the functions mentioned, such as dot, cross and determinant

from math-as-code.

angererc avatar angererc commented on August 31, 2024

I like the project a lot. I especially like the idea of focusing on mathematical operators (which are easy to write but can be pretty involved to compute) and not whole algorithms because there are plenty of books describing algorithms. I always think of mathematical operators as small programs and if I don't have a corresponding program in my head I don't really understand the operator. Having had a guide like yours would have saved me a ton of time when I was younger.

I would love to see a "numerical math" section which presents operators such as integrals, derivatives, gradients and laplacians etc. because using numerics is how most of these things are implemented in practice (and it's often easier to understand I think)

As examples: given are the values of a function f(x) at discrete points in the form of an array.

  • The derivative f'(p) at grid point p is just the difference of its neighbors f'(p) = f(p+1)-f(p).
  • A laplacian is somewhat similar the average of all the differences between the surrounding points in n dimensions.
  • An integral is just the sum of the values which shows the similarity in the used signs: a large cursive S for integral sums and a large Greek Sigma for the summation operator.

from math-as-code.

mattdesl avatar mattdesl commented on August 31, 2024

@chmaruni Thanks for the feedback. Things with limits (derivatives, integrals, infinity) are going to be tough to translate into code. Discrete points might work for certain things... The same is done here and makes sense to me. 😄

from math-as-code.

angererc avatar angererc commented on August 31, 2024

I agree, operators with limits, infinites and infinitesimals sometimes seem borderline magic and hard to grasp. That's why I think that seeing how they operate on discrete functions (aka arrays) is so helpful, because more often than not they are pretty trivial things with fancy names.

from math-as-code.

angererc avatar angererc commented on August 31, 2024

@mattdesl interesting video. He is still solving the integral analytically however (ie using transformation rules to get rid of the integrals) which is not exactly what I meant but still interesting of course. If you have the values of the function on an evenly spaced grid you can for example usd the trapezoidal rule, see "numerical implementation" here: https://en.m.wikipedia.org/wiki/Trapezoidal_rule

from math-as-code.

 avatar commented on August 31, 2024

Can be cool if you create a branch with mathematical formulas that we use in Machine Learn ( Gini, entropy, gain, similarity, euclidian distance ... ) ^ - ^

from math-as-code.

Gremyo avatar Gremyo commented on August 31, 2024

What do you mean delta, the laplacian or?

from math-as-code.

idhamari avatar idhamari commented on August 31, 2024

This is what I am looking for :)
Here are my suggestions:

  • add matlab/octave, python examples as they are more used by scientists.
  • add computation geometry and image processing notations.

from math-as-code.

kumarsoumya avatar kumarsoumya commented on August 31, 2024

Mixed fractions such as

image

from math-as-code.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.