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.
2
votes
0answers
53 views
Issues in nonlinear curve fitting
I have a sample observation of phase values which I need to fit into a nonlinear model and then to determine the model. I have just started using the System Identification toolbox. There are certain ...
2
votes
0answers
88 views
How to get the code from FDA Tool box?
In Filter Design HDL Coder, while designing for nonmultirate filter, there is a option 'CSD' (canonical signed digit) from 'Coeff multipliers' menu in the Filter settings (for optimizing coefficient ...
1
vote
0answers
218 views
installing lpsolve for MATLAB on Ubuntu 12.04 64bit?
I am trying to install this toolkit for 3 hours.... first, for Python.. I gave up. Then for MATLAB...
http://web.mit.edu/lpsolve/doc/MATLAB.htm
It says something about installation(and I read ...
1
vote
0answers
77 views
how to show result of clustering in matlab
I have, data shape matrix with 1003001 row and 3 coloum, done clustering with Fuzzy C-Means (FCM) and Gustafsson Kessel (FGK) in Matlab software vertion 7.10.0. This processed uses fuzzy clustering ...
1
vote
0answers
208 views
MeanShift in Matlab with custom kernel
Is there an implementation of MeanShift, written in Matlab, which allows to use a custom Kernel?
1
vote
0answers
204 views
Simulating a Power Amplifier in MATLAB using “lsim”
I have a simulink block with noise as input and a filter to get colored noise, the block also consist a power amplifier to amplify the output.
noise --> digital filter --> colored noise --> power ...
1
vote
0answers
102 views
interplating 3d matrix by cubic spline
Map provides a 185 x 250 x 3 matrix Map representing an image and “image coordinates” xi and yi. interpolation coordinates 5 < x < 180 and 5 < y < 245, both evenly spaced with spacing 0.1. ...
1
vote
0answers
70 views
How can I set the position of a IMFREEHAND handles in MATLAB?
I save a given position array and handle object defined by IMFREEHAND.
After loading this data back to workspace I want to set this IMFREEHAND object again to the specified position analogous to i.e. ...
1
vote
0answers
122 views
Replace the first frame of a video with another frame using MATLAB
I am using Matlab for a video processing task.
When I tried to create an object for the grayscale video (the video has a .FLV extension) using the mmreader function of MATLAB, it showed an warning ...
1
vote
0answers
147 views
Matlab: `gfrank` over GF(2^m)
I've been working with matrices over GF(2) in Matlab. Well, I've been working with 0/1 matrices that I've been treating as being defined over GF(2). I was surprised/happy to see that Matlab provides ...
1
vote
0answers
172 views
Spline Derivative
I am using the spline toolbox to make a bicubic spline as follows:
ft = 'cubicinterp';
opts = fitoptions( ft );
[xInput, yInput, zOutput] = prepareSurfaceData( xMesh, yMesh, Z );
[fitresult, gof] = ...
1
vote
0answers
146 views
ga() extremely slow when called from within a function(?)
So I'm trying to use ga() to do some optimization. I set up the problem using optimtool and exported the settings. These are then passed to a function. Inside that function I then call ga().
Using ...
1
vote
0answers
341 views
MATLAB neural nets: trainbfg problems when using a custom performance function
I have written my own custom performance function, that is a cross entropy function with some modifications, called augmented cross entropy function.
My performance function itselft is a sum of two ...
1
vote
0answers
187 views
MATLAB non-linear optimization data set
I am trying to write a non-linear optimization program using fmincon. I want MATLAB to read through a data set and compare those values to the constraints. (It is the size of an electrical generator ...
1
vote
0answers
401 views
MATLAB JA Builder throws NullPointerException in MCRConfiguration
I'm trying to execute a MATLAB function from Java using JA Builder.
I followed the MATLAB JA Builder help documentation - the HelloWorld and MagicSquare examples and receive the following stack trace ...
1
vote
0answers
399 views
Sensitivity analysis in an artificial neural network (ANN) in MATLAB
How can I carry out a sensitivity analysis, that is, the effect of input parameters on the output of a multilayer, feed-forward, back-propagation neural network using MATLAB. What is the code for ...
0
votes
0answers
35 views
AND operation for textfiles in MATLAB
I've 3 .txt files. I want to perform and operation to these 3 text files and to save the output in a new text file.
fid = fopen(AND('a.txt','b.txt','c.txt'));
will this work as per my requirements? ...
0
votes
0answers
15 views
MATLAB 7 not connecting to MYSQL through database toolbox
I am using MATLAB Version 7.10.0.499 (R2010a)
Java VM Version: Java 1.6.0_12-b04 with Sun Microsystems Inc. Java HotSpot(TM) 64-Bit Server VM mixed mode
When i attempt to open my database toolbox to ...
0
votes
0answers
50 views
Index exceeds matrix dimensions - MATLAB GUI
In my GUI shown below http://s1273.photobucket.com/user/Chethan_tv/media/CBIR_zpsb48bce14.jpg.html
open push button is used to view image displayed on respective axes. axes display an image, open ...
0
votes
0answers
17 views
how to define beta0 for nlinfit function in MATLAB
I am wondering how can define the beta0 for nlinfit in MATALB.
I have 9 attributes in each instances. Could you please help me how can define the beta0.
I have 34 instances
for exmaple my code ...
0
votes
0answers
32 views
blockproc matlab with BorderSize
I have the follwing code.
It returns H is empty but when I remove the 'BorderSize' it works fine. What is the problem with this code?
function test()
a = [1:100];
a = reshape(a, [10,10]);
numWords ...
0
votes
0answers
32 views
unknown image format on axes in MATLAB
I'm working on CBIR, in my GUI I've 6 axes one for query image 5 for resulted images. For displaying images on axes my code is
function displayResults(filename,hObject, eventdata, handles)
% Open ...
0
votes
0answers
46 views
KL Divergence in KDE toolbox giving Inf
I am using the KDE toolbox for my work .. Here I am calculating the kde for the set of points in class 1 and set of points in class 2. Then I am taking a KLD between them --
Bandwidth = ...
0
votes
0answers
60 views
Matlab won't execute Parallel-For when using feval on MuPAD
I have a Matlab script myscript.m which needs to call a time-consuming function many times. This function is a composition between a Matlab function and a MuPad function:
tcons_func = ...
0
votes
0answers
36 views
Dataset with categorical features in MATLAB PRTools toolbox
This question concerns PRTools, a MATLAB toolbox for pattern recognition.
It sounds really simple, but I cannot figure out how to have a prtools dataset which includes categorical data/features.
...
0
votes
0answers
38 views
Estimating two matrix using Hidden markov model toolbox in MATLAB
I am trying to apply Hidden Markov Model to improve my detection accuracy.
In my program, there are two states, 1 and 0. I used Bayes detector to generate the probability for each instance to be in ...
0
votes
0answers
60 views
Using MATLAB PRTools naivebc classifier to classify datasets with NaN
This question concerns PRTools, a MATLAB toolbox for pattern recognition. I am trying to use PRTools naivebc classifier to classify some datas which has NaN values, and am getting a following error. ...
0
votes
0answers
41 views
can matlab production server improve performance
I used matlab Builder JA to produce java codes. I saw a big increase in terms of running time.
I was told one of the options to improve is MPS (matlab production server). It is a fairly new feature ...
0
votes
0answers
47 views
libSVM plotROC using MATLAB giving inconsistent results
I have a binary classification problem. I'm using libSVM with the plotROC, but the AUC values are bizarre. The accuracy, according to the same function, is 24% (908 out of 3741) and the confusion ...
0
votes
0answers
32 views
Matlab: variable values shows “error displaying values”
I have saved a number of output variable to .mat file. it showed its values in workspace properly. Unfortunately the variable values in workspace now show "error displaying values" instead of the ...
0
votes
0answers
76 views
Matlab: test data neural network wizard
I want to use matlab out of the box NN wizard to solve a classification.
How can I use back the NN generated from the wizard to test extra set of data?
For example, initially I have 100 sample and put ...
0
votes
0answers
181 views
Feature Extraction from haar wavelets decomposition
I'm making a school project on 'age classification using facial features'.I need to extract features from an image so that they can be supplied to a neural network for classification.Features are ...
0
votes
0answers
20 views
Code Translation Field Trip to Matlab
I´m trying to translate this code I got from a supervisor; its ment for fieldtrip but it should be modifiable for eeglab. Any help is much appreciated. Thanks!
function [X]=get_time(cfg,data)
...
0
votes
0answers
46 views
how to relate fuzzy sets in Fuzzy interface structure
I have implemented Fuzzy controller in simulink. Fuzzy interface structure can be sen in the next image
I just followed a tutorial and implemented it. The FIS has two inputs,three outputs and 49 ...
0
votes
0answers
65 views
Analysis of Camera Calibration results and strange 3D coordinates after rotation,translation extraction
I did the camera calibration with Matlab ToolBox. I took 6 images with an iPhone 4S with camera details as following:
The images are about ~2 MB in JPEG format with following details:
Here is ...
0
votes
0answers
28 views
MuPAD: Problems when using symbolic summation
I have created in a MuPAD script file myfuncts.mu two functions:
// Triangular pulse
intimp_tri := (r1,r2,r) -> piecewise(
[r>=r1 and r<((r1+r2)/2) ...
0
votes
0answers
81 views
Image byte[] into matlab
I have a 24 bit image RGB which is represented as packed byte array .
meaning the array looks like so: R,G,B,R,G,B....
I have complied file of Matlab into dll and I want to send the array into it.
...
0
votes
0answers
50 views
How to implement fuzzy logic toolbox with two output?
I am working on fuzzy logic using MATLAB fuzzy toolbox. But I don't know how to do it. I tried like this:
[out1 out2] = readfis('fuzzywork');
[one, two] = evalfis(inputs,[out1 out2] );
But it does ...
0
votes
0answers
18 views
How to fix training set and testing set when using sequentialfs()
I'm now working on Matlab and I'm wondering how to do features selection with one-class SVM (LibSVM).
I know that there is a function called sequentialfs() which is designed to do feature selection ...
0
votes
0answers
23 views
How to import a MuPAD procedure/file into another file
Consider a procedure you define into your MuPAD file mfile1.mu:
myProcSort:= proc(a, b)
begin
if a < b then
[a, b]
else
[b, a]
end_if;
end_proc:
Consider now that you have another ...
0
votes
0answers
41 views
Using a camera in Matlab with some UI buttons
Ok, So I am trying to get my window set up to have the camera running with buttons at the bottom. I have the code:
function faceCam2()
vid = videoinput('winvideo');
% Create a figure window
hFig = ...
0
votes
0answers
21 views
What should be the right code for this?
Given-Seed which is selected as initial seed is centre pixel of an RGB image For grow formula we use intensity based similarity between seed and 8 neighbour pixels of the seed The similarity index ...
0
votes
0answers
37 views
Local Contrast Mask
I have a contrasted image in the same size of my binary masked image.I want to locate where the maximum local contrast indices(xmax, ymax) are in this image upon where my binary mask ==1?
Any help is ...
0
votes
0answers
138 views
compare result using Anfis GUI in Matlab
I calculated my data using anfisedit in MATLAB and exported my data to my workspace and now I want to find confusion matrix.
But I couldn't find which values are actual which values are predicted.
I ...
0
votes
0answers
70 views
Undefined function 'insertObjectAnnotation' in matlab
Trying to apply matlab face detection code. but getting some erroes. I found the same question here and tried the solutions also but couldn't solve the problem.
faceDetector = ...
0
votes
0answers
123 views
How to test all inputs in Fuzzy Logic in Matlab
I'm testing fuzzy logic in technical trading in Matlab i have 5 different input data( each data consist of 755 cells). so for each day the system must take this 5 different input and create one ...
0
votes
0answers
81 views
Error in rgb2hsv
rgb2hsv function gives error for some images, but gives good result for some other, in the code shown below.
[fname path] = uigetfile('*.*','open image file');%*.*
%dn=path;
...
0
votes
0answers
67 views
Same control points over same image
base = imread('westconcordorthophoto.png');
unregistered = imread('westconcordaerial.png');
iptsetpref('ImshowAxesVisible','on');
imshow(unregistered);
load westconcordpoints
tform = ...
0
votes
0answers
131 views
Vehicle tracking for traffic signal
I am trying to develop a program that counts the number of cars crossing a line, and using this information to operate a traffic signal.
I am using matlab. There is a useful demo 'Vehicle tracking ...
0
votes
0answers
69 views
A function (jcitest) in the econometrics toolbox is not being recognized
For whatever reason MATLAB is not recognizing my call to the Johansen cointegration test, or jcitest. It's in the Econometrics Toolbox (I loaded version 1.3) and when I type the command "ver" it shows ...
