MATLAB is a high-level language and interactive programming environment for numerical computation and visualization developed by MathWorks.
0
votes
0answers
4 views
Segregating digits from an image in matlab
I am doing a project to recognize the digits in a calculator screen. The full image is shown .
After some image processing, I have extracted only the screen from the full image as shown .
But the ...
0
votes
0answers
5 views
Numerical Integration in MatLab
I am trying to compute an integral using Matlab's dblquad. To do it I first wrote a script function. My code is
function z = IntRect(x, y)
%The variables
z0=20;
x0=15;
y0=20;
...
0
votes
0answers
3 views
export data from a figure plotted using 'fill' command
my function plots a graph using 'fill' command which takes vertical and horizontal coordinates from two corresponding matrices X and Y. It also fills the polygons with values from matrix ex and my ...
0
votes
0answers
6 views
clear all graphical object in matlab
I created a gui program with matlab, I created menubar for this program and every tab in menubar contains a plot, an edit textbox... The problem is that when I want to plot sin(x) and after I want to ...
0
votes
0answers
8 views
Garchpred with Monte Carlo simulation in Matlab
I am trying to predict the values for a time series using garchpred on a time horizon of 4 periods. At each step I have to also add an estimated residual. The simulation is repeated 50000 times.
Here ...
3
votes
0answers
30 views
Efficiently identifying connected cells\voxels
I'm trying to identify the most efficient way to test if two cells\voxels are connected. I'll discuss the issue in 2 dimensions for simplicity and consider the cells in the diagram...
Now I'll just ...
1
vote
3answers
18 views
Matlab - How to mask a 3-D image using a binary image
I have an image with red, green, blue channel and a binary version of the image.
What I want to do is concatenate those 2 images so that the binary image works as the mask for the normal image.
I ...
-1
votes
0answers
22 views
How to make this file to matriks in matlab
I have a ZPD file from the following ftp site.
To compare it with my data, I want to import the ZPD data to a workspace in matlab. But, when I import this, there isn't any data in the workspace.
...
1
vote
0answers
14 views
crop image with fixed x/y ratio
I want to crop image using following code. but i want to user only can select the crop area with a predefined x/y ratio.for example if x=2,y=2 ,then user can only use mouse to select an area with ...
1
vote
1answer
8 views
Solving The Figure Tab on MATLAB GUI
I'm working with k-means and silhouette in MATLAB GUI. On my MATLAB GUI, there is some push buttons, let us call it 'k-means' and 'silhouette'.
This is the code for the k-means:
[g c] = ...
0
votes
0answers
9 views
Octave GUI with debugger/profiler
I am looking for a GUI/IDE for Octave with basic support for debugging, like the Matlab editor does (possibility to set breakpoints graphically and to see where the execution point is). Having ...
-1
votes
0answers
15 views
detect circle between some shapes [closed]
in my image has some shapes(circle,square,triangle).
how can I detect circle between other shapes? and can tell me how many circle there is in my image.many thanks
I = imread('c:\safa\test.bmp');
...
0
votes
1answer
14 views
Use multiple gui and get data from another gui function in matlab
I want to create a gui program with matlab but i want to use multiple gui. for example I have the main gui function and I want to get data from another gui with edit textbox. In the example below, I ...
0
votes
2answers
24 views
Matlab: Speed-up reading of ascii file
I wrote this piece of code which works fine, but is way too slow for my purposes:
%%% load nodal data %%%
path = sprintf('%sfile.dat',directory);
fid = fopen(path);
num_nodes = textscan(fid,'%s %s ...
0
votes
0answers
15 views
Some issues about 'solve' in matlab
Hi I am trying to use matlab to estimate some parameters of a statistical distribution. I just keep the question simple. The final problem here comes to solving a equation as shown in the code. The ...
1
vote
2answers
32 views
how to Conditionally add values to a matrix without using a for loop?
I have written a for loop code and I want to write in more succinct way without using a for loop, but instead use matrix conditional.
I am teaching myself matlab and I would appreciate any feedback.
...
0
votes
2answers
17 views
Trapezoidal Numerical Integration in MATLAB without using a FOR loop?
I'm following a Numerical Methods course and I made a small MATLAB script to compute integrals using the trapezoidal method. However my script uses a FOR loop and my friend told me I'm doing something ...
0
votes
2answers
17 views
Obtain matrix of indices in octave / matlab
Given some multidimensional matrix A in Octave / Matlab,
What's the easiest way to get a matrix of the same size as A where all elements are replaced by their index along the k'th dimension
ie for ...
0
votes
1answer
12 views
DICOM to grayscale in matlab
How can I convert a DICOM image into a grayscale image in matlab?
Thanks.
1
vote
0answers
7 views
How to flip a VRML file (.wrl), or flip the VR model in Matlab
I have a fairly complex VRML model of a prosthetic right hand in a .wrl file (3 Megabytes) which I am manipulating (animating according to commands) in Matlab. I'd like to make a mirror image ...
3
votes
1answer
33 views
Interrupt MATLAB programmatically on Windows
When using MATLAB through the GUI, I can interrupt a computation by pressing Ctrl-C.
Is there a way to do the same programmatically when using MATLAB through the MATLAB Engine C API?
On Unix systems ...
0
votes
1answer
53 views
Translating from Matlab to C a function
I m translating a funciton from MAtlab to C. I have a problem with just some lines with Fourier Transform. This is the code, the commented lines are in Matlab and is what I need to translate.
Mat ...
-2
votes
1answer
39 views
Is there a good solution for space efficiently showing multiple images in pylab/matplotlib? [closed]
I am looking for a montage.m equivalent.
It takes some images and displays them in a nice and space-efficient manner.
I am mainly looking for something that is more space-efficient than subplots and ...
0
votes
0answers
27 views
Pad array with a vector
I have to translate from Matlab to C this line:
impadded=padarray(impadded,padSzVec,'replicate','both');
impadded is a Mat object
int padSzVec[2]=[padS,padS];
What it does is pad the Mat object ...
-3
votes
0answers
18 views
How can i count the zeros of a sine wave in MATLAB's simulink? [closed]
I have Sinusoidal wave on the scop,help me to write the program to count the zero of this wave or use of the block to do this.
thank you!
0
votes
0answers
17 views
Any idea(s) why Octave doesn't recognize my .mat file?
I need to load matrix/ data files into Octave for an assignment. I added the directory successfully, but I'm getting the error that it's unable to find the files. Relevant info could be that I ...
0
votes
1answer
17 views
How to get the PID of matlab when using the MATLAB Engine?
When using the MATLAB Engine interface, how can I get the process ID of the matlab process that is started? Or how can I launch the matlab process in a way that would allow me to also get the PID?
...
1
vote
1answer
30 views
Passing variable from event handler
I would be very grateful for help, advice or suggestion. I have an application to control geodetic instrument using synchoronous interface. However some commands are asynchronous by its nature, e.g. ...
0
votes
0answers
8 views
Does matlab build-in max-flow algorithm support undirected graph?
I am using the matlab build-in max-flow algorithm for undirected graph. Every edge is replaced by two directed edge with same capacity 1. However, it encounters an error:
"Reciprocal edges are not ...
0
votes
1answer
19 views
Legend in biograph plot in Matlab
I have a biograph object, and I want to "color-code" the edges and vertices.
Is it possible to get legends in the biograph plot, similar to the ones in plot.
My code is like this:
Sys = ...
1
vote
2answers
44 views
How to create two or more matrices from a single one under certain conditions?
Hello I am new in matlab and I cannot figure out how to solve a problem.
I have Matrix1:
1 0
2 334.456
3 654.7654
4 65.76543
1 0
2 543.43567
3 98.432
4 54.9876
5 12.456
and ...
1
vote
1answer
32 views
Why sometimes Matlab saves figures with wrong colors?
Why sometimes Matlab saves figures with wrong colors?
For example, look at this image. Those points are actually colored,
they are colored in Matlab, but once I save that as .png image, the points ...
0
votes
0answers
10 views
Problems creating a COM DLL in MATLAB
Following the docs here, I'm trying to create a COM DLL in MATLAB. I have the Matlab Compiler installed, and I've run mbuild -setup, using the Microsoft Visual Basic C++ 2010 compiler. My MATLAB ...
3
votes
3answers
47 views
Will code from Matlab R2012b work in Matlab R2013a environment?
Will code from Matlab R2012b work in Matlab R2013a environment?
I am not sure if I should switch from Matlab R2012b to Matlab R2013a?
I heard there are nice new features, but my major concern is ...
0
votes
2answers
15 views
Undefined function or variable 'optimoptions' in Matlab
I use this from the documentation:
options = optimoptions('fminunc','GradObj','on','Hessian','on');
and for some reason I get this error:
Undefined function 'optimoptions' for input arguments of ...
-1
votes
0answers
20 views
Integer dct in MATLAB [closed]
I am working with dct and idct functions and try to use them for a watermarking process. The problem is that after performing the embedding process I need the results to be in the integer datatype ...
2
votes
1answer
33 views
finding the intersection where multiple 3D parametric equations meet
I have some 3D parametric equations that I plot in matlab/octave and would like to find out where they intersect how can I go about doing this. Please note this is just a simple example I plan on ...
2
votes
3answers
41 views
Dynamically creating and naming an array
Consider the following code snippet
for i = 1:100
Yi= x(i:i + 3); % i in Yi is not an index but subscript,
% x is some array having sufficient values
i = i + 3
end
...
0
votes
1answer
16 views
Plotting and merging plots
Let
x=[1 2 3 4 5 6 7 8 9 10 11 12];
t=[0 1 2 3 4 5 6 7 8 9 10 11];
Then
plot(t, x);
will produce a straight line as shown below:
Now suppose I am not given x and t instead x and t being ...
-1
votes
0answers
17 views
Create matlab exe package with cmd
I am working on some matlab code and need to compile to exe to offer custmer.
I used the deploy tool to generate exe but failed.
I used mcc and add all the path in previous deploy project, then the ...
0
votes
0answers
14 views
co-ordinates plotted onto an RGB image in matlab
I have arrays Rx, Ry each of size about 100x1. They contain co-ordinate points. Some of which might be floats. I can plot these as follows
figure, imshow( im ), hold on;
plot( Rx, Ry, 'r-' )
Now, I ...
0
votes
1answer
16 views
Convert contour in a plot in matlab to a contour in image
I have x and y coordinates of a contour. Now they cannot be used as pixel locations since they are not integers. I am unable to find a way to convert them into pixel locations. Floor and round ...
-6
votes
0answers
13 views
Two-dimensional filter image,can not be reduced [closed]
clc clear all close all
H=imread('E:\final design\me\tire10--残缺一7.jpg','jpg');I=rgb2gray(H);I=imresize(I,0.1,'bili');figure;imshow(I),title('原图');
...
0
votes
1answer
32 views
How to draw a line with changing intensity/grayscale
If I have matrix/data with line intensity values:
e.g.
0, 1, 2, 3, 4, 5, ..... M (where intensity value is gradually changing)
or
any random order of values
So if I use the first intensity set of ...
0
votes
0answers
11 views
Linear Discriminant Analysis on Histogram Distribution in MATLAB
I have varying distributions of a coefficient and these distributions represent a distinct class, either A or B. Is there a way for me to use LDA to train a set of data of distributions to be able to ...
0
votes
2answers
39 views
Formatting data in MATLAB
I have read in each line of a data file with n lines into an n length cell array in matlab.
A sample line, element of my cell array looks like
' 21, 0, '1 ',1 , 0.00000, 2, ' Sam ', 1, 1.0000 ...
0
votes
1answer
29 views
How to neatly cut off an extreme value in a plot that compresses the rest of a plot?
So basically, the graph labeled "Thermal Wind" has an extreme value that compresses the y-values for all the other plots, making it much harder to see any of the individual variations in the other ...
0
votes
0answers
16 views
Luxand API in Visual Studio 2010?
How can I use Luxand API to get to work in visual studio 2010? I need to detect points of chin in a given face, can I do it with any other API?
I have tried this sample code:
OpenFileDialog ...
0
votes
2answers
28 views
How to loop over a cell array of variables and perform an operation on each one of them?
I have a cell array of variables called bin_this. I need to loop over it, access each variable, bin the data in that variable, and place the binned data into a newly created variable.
So if the array ...
0
votes
2answers
26 views
find index of max from two dimensional time series data in MATLAB
I am trying to find the max value and its location. Following is the example of the programme,
fname = dir('*.mat');
nfiles = length(fname);
vals = cell(nfiles,1);
phen = cell(nfiles,1);
for i = ...