Talk:MATLAB
This is the talk page for discussing improvements to the MATLAB article. This is not a forum for general discussion of the article's subject. |
Article policies
|
Find sources: Google (books · news · scholar · free images · WP refs) · FENS · JSTOR · TWL |
![]() | Computing: Software C‑class Mid‑importance | ||||||||||||
|
|
||
Examples
My use case is that I do not know MATLAB but want to get an impression as input to the selction of a numerical tool for a project. I like the beginning of the syntax section (which is also an example section) as it is self-contained in explaining the examples. This is done consistently until we get to the magic square M example, where we encounter the line
(J,I) = meshgrid(1:n)
but the meaning of "meshgrid" is not explained. Thus, I do not really understand that example. Similarly in the 2D sinc example, where we encounter "meshgrid" again, and also other new notation such as ".^" and "eps".
I miss some more advanced examples - like with built-in special functions (if it has some?) how can one handle I/O. Can I interface with external code and examples of how to do that. How about reporting? All in all I miss some more information about the possibilities rather than the limitations. -- Slaunger (talk) 12:34, 4 March 2008 (UTC)
- A quick search for matlab meshgrid or matlab eps would find you what you need. Add the info the article if you think like. Dicklyon (talk) 15:41, 4 March 2008 (UTC)
- Thank you for responding. I did the same search and found my answers. I do not mind contributing, but I prefer to do it on topics which I am knowledgable about, and secondarily I have reservations at contributing here, as my written English is unworthy en.wikipedia. It was just a suggestion for improvement. -- Slaunger (talk) 20:55, 4 March 2008 (UTC)
C-Mex files
Someone should write something of C-MEX files in MATLAB. It may be helpful to readers.Vice regent 16:47, 15 May 2008 (UTC)
History of default data type
Today the default data type in Matlab is the 64-bit double-precision floating point (complex numbers need two times 64 bit). I have been unable to find information about the historical development of the default data type. What was it in the early days of MATLAB? Matlab appeared first on computers on which the standard allocation unit was the byte (8 bit) and I guess 64 bit precision was not possible back then. Does anyone remember or even better know a source for this information? User:Nillerdk (talk) 10:15, 16 November 2008 (UTC)
- 64-bit "double-precision" floats have been common on computers for a long time, and as far as I can recall, that's what Matlab always had; I started using it around 1990. The programs it was based on were much older, but I think still used the same numeric format, more or less (but before IEEE standard floating point, not all 64-bit floats were alike). Dicklyon (talk) 06:34, 28 November 2008 (UTC)
Programming Language or Scripting Language?
Since matlab code can't be run independent of the MATLAB programming, I am 99% sure that it is a scripting language, and NOT a programming language. Discuss. —Preceding unsigned comment added by 24.10.240.41 (talk) 04:11, 2 January 2009 (UTC)
- Well, there is a compiler that allows one to run matlab code outside the matlab environment. -- Jitse Niesen (talk) 15:59, 2 January 2009 (UTC)
Alternatives Section Redux
After reading the discussions below, to understand the previous arguments, I have added an "Alternatives" section to the article attempting to respect the issues brought up. I, very often, used Wikipedia as a way to look up information on applications and, in many cases, to look for alternatives for well known software packages (due to price, technical issues, etc.). I think that any article on a product should, at least, mention any direct alternatives that exist and point to where the reader can find more information on them. I believe this to be especially true with programs that are directly compatible (or, at least, intended to be). This is why I, specifically, chose to highlight Octave and FreeMat but also included links to the lists of alternatives as well as the comparison page. I find the article, as it was written previously, to be an aberration when compared to the style standards implemented in most other Wikipedia articles I've read. It is, almost universally, common to have, at the very least, a “See Also” section at the end of an article to point readers to other relevant topics (of which, competing software would be one). I have to question whether a non-npov may have motivated past efforts to ensure that no reference to related topics (organizations Matlab competes with for marketshare) was mentioned anywhere in the article. Even the list of numerical analysis software (mentioned below as a justification for deleting information referencing Matlab competitors) was not, as far as I could see, linked to by the article in any way. This seems, to me, to be the opposite of what Wikipedia is intended to accomplish, which is to inform the reader about a topic in as efficient but thorough manner as possible with as little bias as possible. As my contribution consists of only two sentences at the very end of the page, I would hope that no one tries to claim it adds too much bulk to the article. I have also tried to make it clear that the effectiveness of Octave and FreeMat's compatibility with Matlab is, at least, questionable and have tried not to imply that they can replace 100% of MatLabs features while leaving my wording general enough for any future improvements in their compatibility. 24.148.20.132 (talk) 02:20, 9 March 2009 (UTC)
Unclear discussion of matrices
This is given as an example in the matrices section but it is unclear to someone without previous knowledge (such as myself) how that command brings that answer.
A(2:4,3:4) ans =
11 8 7 12 14 1
could someone please add an explanation into the article?
THEMlCK (talk) 02:18, 7 April 2009 (UTC)
- I added a sentence that should help, right before that example. Dicklyon (talk) 04:09, 7 April 2009 (UTC)
Monkey Analytics
I think this link can be removed. --SiggyF (talk) 09:53, 6 December 2009 (UTC)
NPOV tag
It is pretty clear from the previous discussion dating back for at least 3 years that there will never really be a "resolution" to the NPOV dispute. There are people dug in on both sides. Does that mean that the tag stays on forever? 76.118.23.40 (talk) 18:17, 5 June 2010 (UTC)
- I've removed the tag and replaced it with {{criticism-section}}. Dispute tags are not supposed to be badges of shame to be worn indefinitely by articles. This article needs significant work, but I believe it's simply a matter of requiring a competent rewrite to comply with our guidelines on article content and tone rather than something which needs thorough discussion on talk. Chris Cunningham (not at work) - talk 12:47, 7 June 2010 (UTC)
Objects discussion
MATLAB supports classes, however the syntax and calling conventions are significantly different than in other languages, because MATLAB does not have reference data types. For example, a call to a method object.method(); cannot normally alter any variables of object variable. To create an impression that the method alters the state of variable, MATLAB toolboxes use evalin() command, which has its own restrictions.
- This isn't strictly true. In the MATLAB object system, there are two types of objects. Objects with value semantics have the property that this example is pointing to in which a LHS argument must be specified to contain an object with modified state after method is invoked.
new_object = object.method();
- The second type of objects in MATLAB have handle semantics. These objects can have their state modified by the invokation of methods without a LHS argument
object.method();
Extraneous info in introduction
There seems to be some extraneous info in the introduction, regarding the rising importance of MATLAB for continuing education students. This strikes me as possibly worthy of a sub-section (possibly), but not worthy as part of the introduction. No references are given and the concluding sentence, "These stand-alone courses are of special significance in helping older people with backgrounds in engineering, science, and economics remain competitive." seems highly opinionated. The rest of the introduction is fine but I am deleting this portion for now and leaving this comment for open discussion/disagreement. —Preceding unsigned comment added by Sealbock (talk • contribs) 00:09, 4 December 2010 (UTC)
Why there is no toolbox price list ?
Why there is no toolbox price list ? There is not even a single word in the article about how much does it cost. One could think MATLAB is so humanitarian and altruistic.... — Preceding unsigned comment added by 62.206.211.29 (talk) 13:24, 25 August 2011 (UTC)
- Ever seen a price list in an Encyclopedia?Billlion (talk) 15:58, 25 August 2011 (UTC)
What's secondary programming?
If it's a popular expression for some people, it might be worth a separate article and a link. Otherwise, it should be replaced by something clearer, explained, or the section should be removed. Engelec (talk) 17:51, 1 October 2011 (UTC)