Code Monkey home page Code Monkey logo

complex's Introduction

anic17

Hi, it's Andreu, aka anic17, a hobbyist programmer, so everything is done in my free time. I mainly use C for my new projects or batch scripting for small Windows scripts. I'm currently learning a bit of front-end web development including HTML, CSS, and JavaScript.

Skills

These are my skills and my frequently used languages.


Batch


C


HTML


CSS


JS

What I am working on

I'm currently working on Newtrodit, a console text editor written in C. Newtrodit 0.6 rc-1 is out, go try it! All feedback is appreciated. Nevertheless, be sure to check out my other projects! My website gets new pages and contains everything you need to use my programs.

My GitHub stats



Contact me

These are the ways to reach me

anic171 Twitter @anic171

Newtrodit Twitter @Newtrodit

gfmaxgE Discord server Program Dream

SWH.Console@gmail.com Gmail [email protected]

Batch.Antivirus@gmail.com Gmail [email protected]

Licensing and crediting

All my programs are licensed under GNU GPL v3.0 unless stated otherwise, so you can use and share them freely, with the only condition of crediting me and linking my GitHub project to the repository that is being used.

complex's People

Contributors

anic17 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

ct19910208

complex's Issues

ccos is incorrect.

ccos imaginary term should be negative
Currently it is the same as csin:

complex_t ccos(complex_t num)
{
    complex_t result;
    result.real = cos(num.real) * cosh(num.imag);
    result.imag = sin(num.real) * sinh(num.imag);
    return result;
}

it should be

complex_t ccos(complex_t num)
{
    complex_t result;
    result.real = cos(num.real) * cosh(num.imag);
    result.imag = -sin(num.real) * sinh(num.imag);
    return result;
}

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.