ninesalt
ninesalt

Reputation: 4354

Is Matlab an IDE?

I'm a little confused as to what classifies as an IDE. According to Wikipedia:

An integrated development environment (IDE) is a software application that provides comprehensive facilities to computer programmers for software development.

So is MatLab considered an IDE?

Upvotes: 0

Views: 11835

Answers (2)

crowdedComputeeer
crowdedComputeeer

Reputation: 469

As with many things in software, there are no hard rules. But, if anything fits the description of IDE, matlab does.

The basic engine can be run purely from the command line, but when you marry that with the graphical environment, it has all the hallmarks of an IDE - richly featured text editor, debugging support, memory/workspace introspection, etc etc.

In some ways, the IDE is what you pay for. Minus that, there's little advantage over open source numerical languages like Python or Julia.

Upvotes: 2

Doryx
Doryx

Reputation: 387

MatLab workbooks could be considered and IDE. Depending how you define "comprehensive facilities" Vim is an IDE.

Upvotes: 1

Related Questions