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
28k 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 ...
7
votes
3answers
20k 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
3k 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
2answers
307 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 ...
4
votes
4answers
771 views
change number of gray levels in a grayscale image in matlab
I am rather new to matlab, but I was hoping someone could help with this question. So I have a color image that I want to convert to grayscale and then reduce the number of gray levels. So I read in ...
4
votes
2answers
444 views
Does Matlab Parallel Computing Toolbox consume other licenses (e.g. image processing)?
consider the following code:
matlabpool 10;
parfor i=1:10
img = imread(foo(i));
end
the cluster is set up using sge. My question is whether this code will consume further matlab basic and ...
4
votes
2answers
47 views
Detect if MATLAB startup.m is running on a worker
A colleague has a MATLAB startup.m file that contains interactive code (it calls the command questdlg to ask him which project directory he wishes to work in).
This works fine for him when running ...
4
votes
2answers
276 views
Matlab slow parallel processing with distributed arrays
I am new to using distributed and codistributed arrays in matlab. The parallel code I have produced works, but is much slower than the serial version and I have no idea why. The code examples below ...
4
votes
1answer
401 views
Drawing tetrahedron in MATLAB R2011a
I wanted to draw tetrahedron in MATLAB. but I don't know how can I do this.
pleas help me
4
votes
1answer
2k views
Naive Bayes row classification
How do you classify a row of seperate cells in MATLAB?
At the moment I can classify single coloums like so:
training = [1;0;-1;-2;4;0;1]; % this is the sample data.
target_class = ...
4
votes
3answers
1k views
MATLAB Parallel Computing Toolbox - Parallization vs GPU?
I'm working with someone who has some MATLAB code that they want to be sped up. They are currently trying to convert all of this code into CUDA to get it to run on a CPU. I think it would be faster to ...
4
votes
1answer
4k views
Rotating an image without the Image Processing Toolbox
I would like to rotate a non-squared image with Matlab:
without using the imrotate function, since it is part of the Image Processing Toolbox,
with the loose parameter, wich means the size of the ...
4
votes
1answer
198 views
C# array into MWarray Matlab
I have an MxNx3 matrix and i want to transfer it into matlab using MWArray.
here is my code. however there is no CTOR for that.
is there any way to do it?
RGBImage image = _currentImage as ...
4
votes
1answer
436 views
use neural network generated by matlab in c++
I have generated a network with matlab.
I can see the result of this network for my inputs in matlab via this command:
sim(net, 0.01)
I want to do this work in c++ with the "net" generated by matlab.
...
4
votes
1answer
335 views
User defined Jacobian pattern in MATLAB's lsqnonlin being ignored
I am using MATLAB's lsqnonlin function, and I am attempting to set a user-defined Jacboian pattern via the option JacobPattern. I set a preference for the trust-region-reflective algorithm to be used, ...
3
votes
1answer
50 views
Getting residuals to a vector
Anybody knows how to get the residuals created by the following matlab code to a vector 'A' ?
I tried to get the residuals by typing r at the command prompt but did not get the residuals
Thanks.
...
3
votes
2answers
1k views
How to set up LIBSVM Matlab interface?
I am having problem with implementing LibSVM to MATLAB.
I am using MATLAB R2009a (I also have the latest version, R2012b, but I dont use that one)
I downloaded LibSVM package, libsvm-3.14 to my ...
3
votes
2answers
624 views
How can we use unsupervised learning techniques on a data-set, and then label the clusters?
First up, this is most certainly homework (so no full code samples please). That said...
I need to test an unsupervised algorithm next to a supervised algorithm, using the Neural Network toolbox in ...
3
votes
2answers
3k views
Connect MySQL to MATLAB?
I would like to know how to connect a MySQL database to MATLAB software. I downloaded the jdbc connector but I'm not getting how to specify the path.
3
votes
1answer
2k views
Summation series using matlab
When i write this in matlab
syms x;
f=x^3-cos(x);
g=diff(f)
it gives out put as
g =
3*x^2+sin(x)
Now I want to generate summation series as
I google and found "symsum" command but it ...
3
votes
1answer
96 views
any way to add a switch for spmd command in matlab?
I am using matlab2011 for parallel calculation with multiple cores, which in my code is simply implemented with the block SPMD END. However, for some times, I want to turn off the spmd in the program ...
3
votes
1answer
1k views
Matlab search path for all users on linux
How can I add a Matlab search path for all users on a Linux system?
I am managing a Linux computer that is shared by several people.
I want to place some Matlab *.m files at a path (for example, ...
3
votes
3answers
580 views
How to draw the contour of the objects in label matrix
I have a label matrix of segmented image.
For example,
1 1 1 2 2 2 3 3 3 4 4 4
1 1 1 2 2 2 3 3 3 4 4 4
1 1 1 2 2 2 3 3 3 4 4 4
1 1 1 2 2 2 3 3 3 4 4 4
1 1 1 2 2 2 3 3 3 4 4 4
1 1 1 2 2 2 3 3 3 4 4 4
...
3
votes
3answers
875 views
improfile's write equivalent
In MATLAB's Image Processing Toolbox there's the improfile function that returns the intensity profile of an image from underneath a line defined by two points.
Is there a writing equivalent of this ...
3
votes
2answers
1k views
MATLAB image transformation
The following code descripes the affine transformation of an image, I,
T = [sx, 0, 0;...
0, sy, 0;...
0, 0, 1];
tform = maketform('affine', T);
[J,cdata,rdata] = imtransform(I,tform);
...
3
votes
1answer
299 views
matlab image: return pixel values along the boundingbox in an image?
So, I have an RGB image and I've put a rectangle (boundingbox) around an area of the image. However, I can't get the pixel values along the perimeter of this rectangle.
I've tried looking into the ...
3
votes
4answers
258 views
Image-processing basics
I have to do some image processing but I don't know where to start. My problem is as follows :-
I have a 2D fiber image (attached with this post), in which the fiber edges are denoted by white ...
3
votes
1answer
811 views
Matlab contourf() to plot data on a global map
I have been using Matlab 2011b and contourf/contourfm to plot 2D data on a map of North America. I started from the help page for contourfm on the mathworks website, and it works great if you use ...
3
votes
2answers
1k views
MATLAB imresize with a custom interpolation kernel
how can I use my function as an interpolation method for imresize function in MATLAB?
I read MATLAB's help about the way to use a custom function for interpolation method, but there was not any clear ...
3
votes
1answer
305 views
Read .daq (Data Acquisition Toolbox for Matlab) file format in python
Anyone know of a way to read in .daq files generated with the Matlab Data Acquisition Toolbox in python? Alternatively, a simple way (using only open-source software) to convert the files to csv or ...
3
votes
1answer
2k views
Difference between imwrite and imsave
//1
I have color matrix(M*N)
and I used imsave to get an image.
figure, imagesc(color matrix), colormap(gray); imsave;
It is simple and works.But I have to give image name to save image each ...
3
votes
1answer
80 views
sending axes as parameter in matlab
I need a help with MatLab GUI .
I have a GUI with an axes on it,
and a function plotData(axes,data) which has axes as parameter.
The GUI has a button "plot Data".
How can I do the following:
When ...
3
votes
1answer
155 views
bode plot discrepancy
I am plotting the following
Cu4 = tf([1 2], [1 2 6]);
[magCu4 phaseCu4 wout] = bode(Cu4,logspace(-2,7,300));
magCu4 = squeeze(magCu4);
phaseCu4 = squeeze(phaseCu4);
...
3
votes
2answers
1k views
Set Parent of Map Axes in Matlab GUI
I am programming a basic GUI in MATLAB that utilizes the mapping toolbox. The GUI will display a grayscale image and then plot discrete points over the data, all of this over the necessary map ...
3
votes
2answers
293 views
error in Undefined function 'insertObjectAnnotation' in matlab
i try to apply code for face detection and tracking in matlab but unfortunately this error prompted up
i use matlab R2012a
this is the code i tried
faceDetector = vision.CascadeObjectDetector();
...
2
votes
3answers
27k views
How to find the mean square error in matlab
Is there a way to find the mean square error in matlab between 2 images A,B(say) in true color of dimension 256*256*3 ? The mathematical formula for a matrix say M1 and M2 is as under
mean sq ...
2
votes
2answers
901 views
Matlab Parallelism toolbox : stacking loops in parfor
I'm trying to use the parfor loop in the matlab parallelism package.
I'm having a similar problem to this guy : MATLAB parfor slicing issue? . The output matrix doesn't seem to be recognized as a ...
2
votes
4answers
7k views
How to check if matlab toolbox installed in matlab
I am working on Matlab R2011a student edition. I want to run some demos provided in Matlab which require some toolbox like Embedded Coder and EDA Simulator Link.
I want to check if those toolboxes ...
2
votes
2answers
2k views
Matching two vectors of different length in MATLAB
I have data from two different sensors loaded into two separate vectors. These sensors measure the same acceleration and hence their pattern is the same. However, because of measurement noise, the ...
2
votes
2answers
2k views
MATLAB: What happens for a global variable when running in the parallel mode?
What happens for a global variable when running in the parallel mode?
I have a global variable, "to_be_optimized_parameterIndexSet", which is a vector of indexes that should be optimized using ...
