MATLAB is a high-level language and interactive programming environment for numerical computation and visualization developed by MathWorks.

learn more… | top users | synonyms

1
vote
2answers
7 views

Assiging matrix value by coordinates in vector object

Let's we have a vector b = [3 2 1]; Let's we also have matrix like this : A = ones([10 10 10]); So, now I want to use vector b as a source of coordinates to assign values to matrix A. In ...
0
votes
0answers
5 views

read matrx (vector) in matlab from a gui or textbox

I have a program what calculate a matrix roots with gauss elimination, but...I want to create for this a graphical interface...for example I want to read the matrix elements from a textbox...and if ...
0
votes
0answers
7 views

How to find more than one matching pattern using Normalized Correalation

I'm using normxcorr2 to find the area that exactly match with my pattern and i also want to find the other area(in the red rectangle) that is look like the pattern. I think it will be works if i can ...
-1
votes
0answers
11 views

Ideal low-pass filter for image in Matlab

I want to implement the following low-pass filter in matlab: H(u, v) = { 1 if D(u, v) <= D0 { 0, if D(u, v) > D0 where D(u, v) = sqrt( (u - M/2)^2 + (v - N/2)^2 ) and the user needs to ...
0
votes
0answers
20 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
1answer
12 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
5 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
8 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
9 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 ...
4
votes
1answer
47 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
19 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 ...
-2
votes
0answers
22 views

How to make this file to matriks in matlab [closed]

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
16 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
10 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
17 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
27 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
16 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
18 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
54 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
19 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? ...
2
votes
1answer
32 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
20 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
45 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
34 views

Why sometimes Matlab saves figures with wrong colors?

Why sometimes Matlab saves figures with wrong colors? This is the code: http://pastebin.com/V50B9TSc Basically for plotting I use the commands plot and scatter. For example, look at this image. ...
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
49 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
17 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
17 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
40 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 ...

1 2 3 4 5 381