MATLAB is a high-level language and programming environment developed by MathWorks. It is the foundation for a number of other tools, including Simulink and various toolboxes that extend the core capabilities. This tag relates specifically to the use of toolboxes.
19
votes
6answers
29k views
How would one check for installed MATLAB toolboxes in a script/function?
How would one check for installed MATLAB toolboxes in a script/function? (checking toolbox versions would also be good!) This could provide a quick and useful error message when someone attempts to ...
19
votes
4answers
3k views
Matlab Coder vs hand coding?
Some background for people reading this in the future (in case it's not locked). I tend to do my programming in a high level language to understand the problem first. After covering all possible ...
8
votes
3answers
22k views
How to install toolbox for MATLAB
I am just wondering, if I need a toolbox which not available in my MATLAB, how do I do that? For example: if I need image processing toolbox, how do I get it?
6
votes
2answers
3k views
Issue in training hidden markov model and usage for classification
I am having a tough time in figuring out how to use Kevin Murphy's
HMM toolbox Toolbox. It would be a great help if anyone who has an experience with it could clarify some conceptual questions. I have ...
6
votes
2answers
4k views
Select Diagonal Elements of a Matrix in MATLAB
Consider the following matrix in MATLAB:
01 02 03 04 05 06 07
08 09 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31 32 33 34 35
36 37 38 39 40 41 42
43 44 45 46 47 48 49
I ...
6
votes
4answers
2k views
Data Acquisition Toolbox for Matlab?
I've been spending a ton of time reading up on National Instruments products and their capabilities when used with LabVIEW. However, LabVIEW and National Instruments hardware is pretty much the only ...
6
votes
4answers
10k views
Best MATLAB toolbox that implements Support Vector Regression? [closed]
In this Wikipedia article about SVM there are a number of links to different implementations of MATLAB toolboxes for Support Vector Machines. Could anyone suggest which of these is best in terms of ...
5
votes
1answer
12k views
MATLAB: how to normalize/denormalize a vector to range [-1;1]
How can I normalize a vector to the range [-1;1] instead of [0;1]. I would to use function norm, because it's faster.
And how to denormalize that vector after that? I've tried some solutions, but no ...
5
votes
4answers
5k views
lowpass and high pass filter in C#
I need low pass and high pass filter written in c#. I have double arrays for this filter process. I think if I try to convert matlab Butterworth and Chebyshev algorithms to c#, it would be easier. ...
5
votes
1answer
2k views
how to create dll's in matlab and use these dll's in .net applications
i am working on image processing.i need to develop ocr reading tool using matlab.....is there any technique to develop ocr reading tool and create the dll of this tool and use it in .net ...
4
votes
3answers
123 views
Can I select what Ethernet port I use for UDP communication?
I am writing code that will communicate to a network via UDP. From the udp documentation, all I have to do is specify a destination address and port and I can start sending/receiving data.
I have two ...
4
votes
2answers
310 views
Can I distribute my MATLAB program as open source?
I know, the general answer will be yes, but here is my situation.
I got a plotting function from one MATLAB's toolbox and modified its m-file to draw what I need. Eventually this function became a ...
4
votes
1answer
1k views
Least squares circle fitting using MATLAB Optimization Toolbox
I am trying to implement least squares circle fitting following this paper (sorry I can't publish it). The paper states, that we could fit a circle, by calculating the geometric error as the euclidean ...
4
votes
3answers
2k views
Headers in dataset (Matlab)
I can't find any good documentation about dataset(), so that's why I want to ask you guys, I'll keep the question short:
Can I set headers (column titles) in a dataset, without entering data into the ...
4
votes
2answers
1k views
Fixed Point MATLAB DSP Algorithm
I've got a question about coding an algorithm for a Texas Instruments TMS320C64xx DSP in MATLAB:
I've got a working sloppy implementation of my filter in MATLAB. My goal is to use MATLAB Embedded ...