Stories
Slash Boxes
Comments

SoylentNews is people

SoylentNews is powered by your submissions, so send in your scoop. Only 13 submissions in the queue.

Submission Preview

Link to Story

MATLAB vs Python: Why and How to Make the Switch

Accepted submission by canopic jug at 2019-09-10 03:56:49
Software

MATLAB and Python are both rather popular languages. Real Python has an overview of the two with an eye towards encouraging use of Python. There is a lot to say when comparing languages, so this is a long read.

MATLABĀ® is widely known as a high-quality environment for any work that involves arrays, matrices, or linear algebra. Python is newer to this arena but is becoming increasingly popular for similar tasks. As you’ll see in this article, Python has all of the computational power of MATLAB for science tasks and makes it fast and easy to develop robust applications. However, there are some important differences when comparing MATLAB vs Python that you’ll need to learn about to effectively switch over.

In this article, you’ll learn how to:

  • Evaluate the differences of using MATLAB vs Python
  • Set up an environment for Python that duplicates the majority of MATLAB functions
  • Convert scripts from MATLAB to Python
  • Avoid common issues you might have when switching from MATLAB to Python
  • Write code that looks and feels like Python

Earlier on SN:
Python's Guido van Rossum Steps Down [soylentnews.org] (2018)
What's Today's Top Language? Python... no, Wait, Java... no, C [soylentnews.org] (2017)
GNU Octave - Open Source Answer to Matlab - Hits 4.0.0 [soylentnews.org] (2015)
You Want MatLab on Your Resume to Get a Job at Google [soylentnews.org] (2014)
Why Python is Slow: Looking Under the Hood [soylentnews.org] (2014)


Original Submission