Snippets in matlab editor [closed] - matlab

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Is there a way to incorporate in some way (suggestions welcome) snippets in matlab's editor. I just need static snippets feature, for standard and often used stuff (simple formatting, plotting and the like) ...
Talking about matlab 2008b here; I don't know if the situation changed in the recent versions.

yes there is - you can use my EditorMacro utility for this, as explained here:
http://UndocumentedMatlab.com/blog/editormacro-assign-a-keyboard-macro-in-the-matlab-editor/

Related

Open Source Specification of the APL Language? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Ruby has Ruby Spec.
Does APL have anything (open source) close to this available? A list of expected inputs and outputs at least? Or some sort of core specification for the APL language?
See Iverson's Dictionary of APL. The end notes contain many references that may also be useful. In addition, the jsoftware site also has many resources related to APL.

Tutorials for the neural network tool in Matlab 7.0.4 [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Can someone please provide me with links to tutorials on how to use the GUI neural network tool called "nntool" in MATLAB 7.0.4 on windows?
Not exactly sure what your looking to do, hopefully this will help.

Best practices to reduce file size? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
What are the best practices, in general to reduce the file size of your iphone app?
Do Reuse of functions instead of multiple functions
Remove unnecessary code
Remove debugging code.
Use object oriented style of coding instead of procedural
See this links:
1. question1
2. question2
3. question3

What is the matlab's rgb2ycbcr formula? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
What is the matlab's rgb2ycbcr formula?Which standarts are using for this
The function RGB2YCBCR is part of Image Processing Toolbox.
Have you looked at the documentation. It's referring Poynton, C. A.A Technical Introduction to Digital Video. The same reference as in this Wikipedia article.
If you have the toolbox you can also look at the code how the function is implemented with edit rgb2ycbcr (if it does not use mex).

Neural Neworks SOM tutorial [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Can anyone recommend me some good tutorial regarding SOM? I googled up some, but I'm not very satisfied with them.
Thanks,
proper
What are you looking for in particular and what language are you using?
One of the easiest explanations of SOM involve the automatic mapping of similar colours as described here and here. I always liked AI-Junkie's site which also demonstrates the colour classification. Try and understand why the colours merge as that is probably the 'hello world' equivalent in Self-Organizing Maps.
Is there something in particular you don't understand?