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

learn more… | top users | synonyms

0
votes
1answer
41 views

matlab - while loop until values converge

I need to solve the following equation: old_val = 0.4*U_Z/(log(5/new_val)); where new_val = 0.11*1.5e-5./old_val; In order to calculate new_val and old_val I need to write a loop which ...
0
votes
1answer
39 views

How to find x number of closest neighbours matching criteria in MATLAB?

I have an m*n matrix with values of 0-9. Basically, what I want to do is be able to find all cells that have a 0 as their value and find the k closest neighbours that aren't 0. My code right now is ...
0
votes
4answers
50 views

How to replace symbol ' * ' with ' .* ' in matlab expression?

I have a long expression & I need to replace all multiplication symbols ' * ' with element-by-element multiplication symbols ' .* ' in it. It takes too long to do it by hand. Is there an easy way ...
0
votes
3answers
29 views

Checking whether a matrix is SPD

What will be the quickest (run time) way to check whether a matrix is symmetric positive definite in Matlab? I have run this test for a large number of sparse matrices whose size (dimension) varies ...
-8
votes
3answers
43 views

How to create a matrix with different elements using Matlab

how to create 9*9 matrix with first 3 rows all zeros ,4 to 6 rows are all with 5 and remaining rows first element are 1's and remaining are 5's using Matlab?
-3
votes
1answer
77 views

Algorithm to generate a series [closed]

I have a scenario, where two numbers are given. And I have continually find the average/or some function of them up to different levels. For example: Input I = 2, 64 I1=2, 33=f(2,64), 64 I1=2, 33, ...
1
vote
3answers
69 views

C programming: translated function from MATLAB to C gives slightly (but significantly) different result

I have been trying to translate some MATLAB code into C but one particular function is giving me different results between the two languages. I don't think it is a precision error because the values ...
1
vote
1answer
22 views

Increasing the number of iterations with multisvm

I'm attempting to use the multisvm function in matlab. On a small data set, everything works great. Increase the size where I need it, and I get the following error: Error using ...
4
votes
4answers
78 views

MATLAB - Using for loops find all the combinations of x^2 + y

I have two for loops like this: for x = 1:1:15 for y = 1:1:15 values(x,y) = x^2 + y end end This allows me to calculate x^2 + y for every combination of x and y if they are ...
-2
votes
1answer
55 views

convert matlab m file into vhdl

Iam trying to convert .m file of matlab into vhdl code. I know this topic has been discussed over the help forums, but still the literature did not proved to be fruitful. Kindly can anyone help in ...
1
vote
1answer
31 views

Efficient aggregation of high dimensional arrays

I have a 3 dimensional (or higher) array that I want to aggregate by another vector. The specific application is to take daily observations of spatial data and average them to get monthly values. So, ...
0
votes
2answers
62 views

MATLAB: Saving parameters inside ode45 using 'assignin'

I'm running a set of ODEs with ode45 in MATLAB and I need to save one of the variables (that's not the derivative) for later use. I'm using the function 'assignin' to assign a temporary variable in ...
-1
votes
1answer
23 views

Tell imagesc in MATLAB to use specific figure

I am getting more than ...slightly flustered... at trying to do what should otherwise be a very, very simple task. I want to use a particular figure, say, figure(3), for doing imagesc. So in the ...
-2
votes
1answer
45 views

Input-Looping Matrix Dimensions Must Agree

I've got this error: Error using - Matrix dimensions must agree. Error in DistMatrix3 (line 23) d=sqrt((I-L').^2+(J-M').^2+(K-N').^2); Error in coba (line 20) ...
1
vote
2answers
50 views

Close all figures in MATLAB, except specific ones.

I am trying to determine if there is a nice way, to close all figures in MATLAB, except for one(s) that I determine before hand, are not to be closed. Is there such a way to do this? I am finding ...
2
votes
1answer
58 views

How do I embedded another figure within a figure in MatLab?

I'm developing a GUI for my MatLab code using UITab and UITabGroup from this previous post: Tabbed software in matlab However that code populates each tabs ui within a single function. Since my ...
-1
votes
1answer
25 views

Floating point image and noise in MATLAB [closed]

I have an image with a floating points values, can I implement different types of noises on it while preserving its datatype?
-7
votes
1answer
59 views

Drawing Social graph in matlab and tag nodes [closed]

I need help about the social network graph. 1.) Can I put tags on the nodes? 2.) How can I modify the connecting lines? The social network graph should look like this.
-2
votes
0answers
34 views

can i convert speech to text (STT) then text to speech (TTS) by Matlab? [closed]

I'm aiming to convert an audio file i have or record from a mic to text, then I need to reverse the operation by text-to-speech. What that help me for? I am aiming to change all the waves i have ...
0
votes
0answers
24 views

DCT for embedding in MATLAB

I use the DCT for embedding process in something like the following code `im1=imread('test.jpg'); alpha=0.01; [r c]=size(im1); im2=dct(im1); count=0; w='watermark will be here'; for i=1:r for j=1:c ...
-4
votes
3answers
46 views

Checking equality of vector elements

Say we have the following vectors in matlab: v1=[2 2 2 2 2 2 2] v2=[2 2 2 2 3 2 2] How can we check that all the elements in each vector are equal or not? EDIT (NOTE) I'm not asking about ...
1
vote
4answers
43 views

Filtering sequences in MATLAB

Is it possible to do something like regular expressions with MATLAB to filter things out? Basically I'm looking for something that will let me take a vector like: [1 2 1 1 1 2 1 3 3 3 3 1 1 4 4 4 ...
0
votes
0answers
19 views

Matlab - text clustering - format

It is the first time i am going to use Matlab for text clustering. The data will be in the following format: name: some name nickname: some nickname hometown: some town etc. I have ...
2
votes
2answers
41 views

Format axes in plot in Matlab

Is it possible to color a single number (or a set of numbers) on one of the axes in Matlab? Suppose I have a plot: plot(1:10, rand(1,10)) Now, can I e.g. make the number 3 on the x-axis red? ...
-1
votes
1answer
17 views

Checking a 3x3 neighbourhood and using “mode” [closed]

I want to check the 3x3 neighbourhood of a pixel in matlab. For the pixel at the center, I want to assign it the value which is repeated most in the neigbourhood. For this, I used mode. I just want ...
-2
votes
0answers
27 views

MATLAB graphing/saving files [closed]

Are there any better tools to saving vectorized matlab figures than panel and export_fig? I was recently introduced to these two and liked them because of their ease of use and flexibility. (great ...
0
votes
1answer
55 views

MATLAB going from Cart to Pol back to Cart coords for cylindrical plot

1. What I WANT to do: (i) Use input n to generate an n*n cartesian grid [x y] = meshgrid(linspace(-1,1,n)); (ii) Generate polar coordinates [theta r] = cart2pol(x,y); (iii) Evaluate a ...
-1
votes
1answer
35 views

How to read the matrix values after “reshape” [closed]

Say for instance that I have the following vector: x=[1 2 3 4]; Here, the vector is read as follows: x1=1 x2=2 x3=3 x4=4 Is that correct? Now, if I do the following: y = reshape(x,2,2); I ...
0
votes
1answer
32 views

Mapping values of a matrix to another matrix

I have two matrices with the following dimensions: matrix_1 --> 143810x2 matrix_2 --> 394x365 Regarding matrix_1, it will eventually evaluate to a matrix of dimension 143810x1. Since ...
0
votes
2answers
35 views

Is there a lsqcurvefit equivalent in java? [duplicate]

Or any other function that could take several pairs as input and output the fitted curve or function in the format you want.
-3
votes
0answers
31 views

Matlab How to convert arrays of structures into several numerical matrices? [closed]

I am new in matlab and I am not familiar with array of matrices. I have a number of matrices nx6: <26x6 double> <21x6 double> .. Each matrix is of this type: >> Matrix{1,1} A ...
-2
votes
1answer
42 views

How do I add a new toolbox to my already installed Matlab version?

I need to add a toolbox to my Matlab Student version. I know that I have to download the toolbox files, place them in some directory and then specify a path. However, I am not quite sure about where I ...
0
votes
0answers
27 views

Set the starting position of an axis

I have the following bar plot with the command: set(gca,'YScale','log): http://i.imgur.com/WtM7VZb.png However, especially in the first case, I want the bars only to grow, let's say from 10^-1. I ...
1
vote
1answer
36 views

Shared memory and waiting sessions in Matlab

Doing a regression on a large dataset, I have a huge read-only matrix that I'd like to share among several threads. I've looked at various way of doing this and found sharedmatrix toolkit to be ...
0
votes
1answer
41 views

Is it possible to stop or interrupt a code in MATLAB if a condition is reached and end the simulation of the program code ?

Is it possible to stop or interrupt a code in MATLAB if a condition is reached and end the simulation of the program code ? eg I have a loop that involves calculating a parameter and the moment the ...
0
votes
1answer
50 views

How can I plot 3 equations with 3 variables in MATLAB?

I am trying to plot this system: x1 - x2 + 3x3 = 8 2x1 - x2 + 4x3 = 11 - x1 + 2x2 -4x3 = -11 I tried with ezsurf and meshgrid, but I wasn't able to do it. clc clear all close all A = [1 ...
0
votes
0answers
27 views

Matlab - Change indexed window title

I'm having some trouble changing the windowtitle on specific indexed windows (which are not created in this code). So I have three windows with standard names: figure 1, figure 2 and figure 3 which ...
0
votes
0answers
16 views

Transforming publishing settings to reporting settings of the Report Generator in Matlab

I have a Matlab code that publishes some descriptions, the plot and results in a pdf file but I want the published pdf's name to be incremented (like myReport1, myReport2 , ...) and possibly ...
1
vote
1answer
42 views

Using struct arrays in parfor

I am having trouble using struct arrays in Matlab's parfor loop. The following code has 2 problems I do not understand: s=struct('a',{},'b',{}); if matlabpool('size')==0 matlabpool open local 2 end ...
1
vote
2answers
38 views

Open a structure of substructures of matlab with python

I have a structure of substructures as an output of a matlab file. Every substructure has four variables from which three are arrays. I would like to access every single value of this data with ...
1
vote
0answers
31 views

How to make AT command to automatically return caller ID?

So, I'm using AT Commands with Matlab to return the Caller ID. It DOES work, but I have to manually ask for it. I what it to return Caller ID automatically whenever I ring on the phone. Here is what ...
0
votes
1answer
29 views

Showing Variable's Value on Message Box

This is a very simple problem, I have been trying it for some times, but not working. I have this code: [s,h]=silhouette(cobat,g,'SqEuclidean') MS = mean(s) z = [cobat s]; I want to show the MS ...
0
votes
1answer
16 views

Audiorecorder, Choosing the input channels. Mac and RME

I am trying to simply record sound through an external sound card: RME Fireface 400. This is the code I am using: AO = audioplayer(mls_o,fs,16,5); % mls_o is the signal that is played. AI = ...
0
votes
1answer
31 views

changing certain elements in a 2D array

I'm working on an algorithm in Matlab that requires certain elements of a matrix to be updated regularly and looking how best to do this. Here is a description of what i'm trying to achieve: I have ...
0
votes
3answers
46 views

How to make MATLAB return char instead of ASCII?

So, I'm using AT Commands with Matlab to return the Caller ID, but this doesn't really matter. Everything is working great except for the fact that it returns ASCII numbers and I have to take my time ...
-2
votes
0answers
15 views

Is there any tutorial for EM mixture bernoulli model in Matlab? [closed]

Is there any tutorial for Estimation Maximization mixture bernoulli model in Matlab? I need to find something to help me how to implemented it!
-1
votes
1answer
14 views

Matlab convex optimisation toolbox. Optimisation variable not shown [closed]

I'm using the convex optimisation toolbox in matlab and the objective function gets minimized and the value is shown. But the optimisation variable for which minima is achieved, I cannot find. Will ...
-3
votes
1answer
9 views

How to use SVMhmm under MATLAB?

Recently I am using SVMhmm package to handle classification problem. But I found that SVMhmm package is used under Linux or Windows (under Cygwin). I am thinking to use it under MATLAB of windows ...
0
votes
1answer
26 views

How to send data from child figure to its parent in matlab?

I have a "main" figure in my matlab project which opens a "settings" figure. The user can change some fields in settings figure and press "Apply" button in settings figure. I want to send the settings ...
-1
votes
0answers
17 views

Unsupervised Network (SOM) for Clustering

Can someone tell me what I have to do in this. I'm new to matlab. I have to do this using Matlab. Generate random real numbers within the four given ranges for your Group using the rand function and ...

1 2 3 4 5 386