MATLAB is a high-level language and interactive programming environment for numerical computation and visualization developed by MathWorks.
0
votes
1answer
31 views
Reshape columns of matrix into multidimensional matrix
I have solar data in a huge (17GB) matrix, call it A. Each column represents one station that collected the one-second data over the year and a half period. The stations are physically in a grid ...
5
votes
3answers
40 views
Why is the Matlab function “feval” needed?
A function handle can be used to call a function, e.g.
f = @sin;
val = f(1.0);
so why is "feval" ever needed?
val = feval(f, 1.0);
When is it useful?
3
votes
0answers
29 views
xlsread() thinks my 1-line CSV has 1048576 rows
I wanted to use [~, ~, temp] = xlsread('1.csv','A:A'); to get the first column of the 1-line CSV file 1.csv.
1.csv contains just one line:
...
0
votes
1answer
21 views
How to make an M x 1 cellarray of 1 x N cellarrays from an m x n cellarray?
I have an M × N cell array A that I would like to turn into an M × 1 cell array B whose entries are 1 × N cell arrays.
The purpose of this manipulation is so that I can run the ...
1
vote
1answer
31 views
Match a string as long as it doesn't appear within another string
Short Question
Is it possible to use regular expressions to match a string which doesn't appear within some other longer string? (I'm using MATLAB)
Example
shortString = {'hello', 'there'};
...
0
votes
1answer
28 views
Is there a feature in matlab like background worker?
I need something like background worker in C# to use in matlab. fyi drawnow will not be useful because I don't want the background thread in GUI. I need it in processing.
so, Is there something like ...
-1
votes
0answers
12 views
how to find the lagrange interpolation polynomials on matlab
I am trying to write a code that will input data sets and produce coefficients of the Lagrange polynomial. I have the code below but when I try and run it it tells me that xin is undefined.
Why this ...
2
votes
1answer
30 views
What is the difference between MATLAB/Octave corr and Python numpy.correlate?
I am trying to port a MATLAB/Octave program to Python using NumPy 1.8.0 and Python 2.7.3. I've used this reference as help in converting MATLAB functions to NumPy methods with great success, until I ...
0
votes
1answer
42 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 ...
0
votes
2answers
43 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
vote
1answer
1k views
??? Error using ==> plot - conversion to double from sym is not possible
I'm having some problems with my code. Here it is:
lamdaz = 1.2;
n = 24;
mu = 0.00055e9;
lamda = sym('lamda','clear');
W = (((2.*mu)./n.^2)).*((lamda.^n)+(lamdaz.^n)+((lamda.^-n).*(lamdaz.^-n))-3);
...
-2
votes
0answers
12 views
Use of kaiser window
Can anybody help me to use kaiser window in matlab, I know that it is used to suppress unwanted smaller peaks in plot. Although i am using it in my code but there is no effect on plot
2
votes
1answer
28 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
votes
1answer
36 views
“Out of memory” error for an image in matlab
I am capturing images via my camera Canon SX - 120 IS. But when I try to process these images in Matlab, "out of memory" error is displayed. The dimension of my image is 2736x3648x3 uint8 type. The ...
0
votes
0answers
25 views
Matlab visualization of video
I have a video file that I need to visualize in Matlab. From this file, I extract down-sampled thumbnails and merge them into a single image. This image is displayed using imshow command and gives the ...
1
vote
3answers
70 views
MATLAB remove NaN values from matrix and shift values left
I am trying to compute column-wise differences in the following matrix:
A =
0 NaN NaN 0.3750 NaN
NaN 0.1250 0.2500 0.3750 NaN
I would like to obtain:
...
1
vote
0answers
26 views
MATLAB fminunc() not completing for large datasets. Works for smaller ones
I am performing logistic regression in MATLAB with L2 regularization on text data. My program works well for small datasets. For larger sets, it keeps running infinitely.
I have seen the potentially ...
4
votes
2answers
3k views
watershed algorithm in matlab
anyone knows how to write a function in matlab to segment the cells and compute the average
cell area using the watershed algorithm?
any help would be much appreciated. Thank you!
Here is an image of ...
-3
votes
0answers
18 views
How can I apply region growing to watershed algorithm in matlab?
In a watershed algorithm, in order to segment an image, is it possible to apply the region growing algorithm?
Actually I wrote the code below and I 'm stuck with the combination of theese two ...
1
vote
1answer
14 views
Django POST/GET, GET works, POST doesn't from MATLAB (urlread). Both work using django.test.client
I am learning Django so I've set up a very simple form/view/url example
Django Version 1.5.1
MATLAB Version R2012A
forms.py
from django import forms
import json
class json_input(forms.Form):
...
0
votes
4answers
48 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
2answers
23 views
Want to make a line, using a handle to a figure in MATLAB
I have a problem, where I already have a handle to a figure created, and I want to somehow now draw a line, given that handle. For example, I have:
f1 = figure(1);
a1 = gca;
For commands like plot ...
1
vote
1answer
160 views
How to match daily data from monthly using Matlab?
I have montly macroeconomic data series and I am planning to use them for a weekly (every Monday) regression analysis. How can I match a data point which release once a month to my date template( 4 ...
0
votes
1answer
28 views
how to change the pixel values in a rgb image in matlab
I have a rgb image, I want to change the pixel values greater than (r:175,g:255,b:55) to Nan in matlab, How can I do that. Please let me know
1
vote
3answers
22 views
Matlab Callback Function Only Sees one Parameter Passed to it
I'm writing my first GUI programmatically in Matlab. I have built the visual aspect of the GUI and I am now in the process of writing the Callback functions. When I write the callback function I need ...
-1
votes
1answer
20 views
Getting the points of a certain plot in matlab
If I have points in a graph in matlab that are randomly sorted and when plotted produce various closed shapes. Given a specific point on the left side of one of the closed shapes how can I get all the ...
3
votes
3answers
32 views
Matlab: Access the same element in all stacked structures
I have a stacked structure with data, that looks something like this:
a(1) = struct('X',rand(10,1),'Y',rand(10,1),'Time',(1:1:10)')
a(2) = struct('X',rand(10,1),'Y',rand(10,1),'Time',(1:1:10)')
...
1
vote
2answers
37 views
Matlab: meaning of eps
Suppose I have following code:
T = 0.1;
t = − 0.5: 0.001: 0.5;
x = pi*t/T;
y = sin (x + eps )/(x + eps );
plot (t, y);
My question is: What is purpose of eps?
I have ...
13
votes
3answers
17k views
How to set custom seed for pseudo-random number generator
I need to perform few tests where I use randn pseudo random number generator. How can I set the seed on my own, so every time I run this test I will get the same results? (yeah, I know it's a little ...
3
votes
3answers
118 views
How can I load 100 files with similar names and/or string in just one step in MATLAB?
I have 100 ASCII files in my directory all named as follows:
int_001.ASC
int_002.ASC
int_003.ASC
.
.
.
int_099.ASC
int_100.ASC
I have to import them in MATLAB all with importdata, which should work ...
0
votes
1answer
18 views
How can I use matlab to download dynamically https pages from thier search function?
My goal is to download content from search function, using a keyword ("Mexico") from specified websites into strings using the Matlab urlread function.
I have for example the following URLs
...
0
votes
1answer
14 views
the map in label2rgb function
I want to use the label2rgb function to construct a color image with a labeled image issued from a segmentation process.
So I compute a color map n-by-3 which contain the meanvalue of each region ...
1
vote
4answers
299 views
About to begin learning MATLAB on my own
so essentially I have the task to learn matlab decently well in the next few weeks, and I want to really be able to impress the people i'm learning it for, so if you guys have advice, I would greatly ...
1
vote
1answer
45 views
Why is the output different for code ported from MATLAB to Python?
EDIT: After some more testing and a response form the scipy mailing list, the issue appears to be with fspecial(). To get the same output I need to generate the same kind of kernel in Python as the ...
1
vote
2answers
21 views
Cross section 2D data of symmetric len into Z matrix MATLAB - 3D plot from 2D cross section
I have a problem and maybe you will be able to help me. Like in the title i have cross section data of a symmetric lens - coordinates s=-100:1:100 and height y - and I would like to create 3D plot the ...
0
votes
1answer
17 views
How to calculate median of frames efficient in Matlab?
I'm using median function (http://www.mathworks.com/help/matlab/ref/median.html) in Matlab in order to calculate average value of each pixels from each frame in a video. Here is my code:
[a,b,c,d] = ...
0
votes
1answer
965 views
Matlab - declaring a multidimensional array in a single statement
Here is the example. I want A to be 3 x 4 x 4.
By a single statement -- I mean one equality, without any concatenations.
A = [ [ [3.1, 4.5, 4.6, 4.3,], [8.2, 11, 8.8, 7.2], [4.3, 4.5, 6.3, 7.6], ...
0
votes
1answer
26 views
Solving ODE in two mode with the same result in MATLAB
I am using the following commands to solve the ODE function "DynamicFunc":
x0_sim = zeros(12,1);
time_sim = [0 100];
options=odeset('AbsTol',1e-9,'RelTol',1e-6);
...
0
votes
2answers
21 views
K means clustering in MATLAB - output image
To perform K means clustering with k = 3 (segments). So I:
1) Converted the RGB img into grayscale
2) Casted the original image into a n X 1, column matrix
3) idx = kmeans(column_matrix)
4) ...
-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?
2
votes
1answer
113 views
basic matlab help
matlab is acting weird. if I assign the value 202 to variable a and 207 to variable b then add a+b it gives me the correct answer 409. Now if I subtract a-b it gives me 0 instead of -5.
btu if I do ...
-1
votes
0answers
12 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
vote
1answer
23 views
Negative numbers of bins
I have the following code that returns the values of a histogram:\
[a,b]=hist(x(:),unique(x));
Since I have negative values in x, I get for instance the value -3, and thus get an error, since the ...
1
vote
1answer
17 views
C# library that has normrnd function from MATLAB
Is there any library in c# that contains the normrnd function in MATLAB and works the same way?
Help would be appreciated!
1
vote
1answer
19 views
Alternative to Matlab cell data-structure in Python
I have a Matlab cell array, each of whose cells contains an N x M matrix. The value of M varies across cells.
What would be an efficient way to represent this type of a structure in Python using ...
0
votes
1answer
34 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
1answer
29 views
Concatenate variable horizontally to make one variable in matlab
Is it possible to concatenate multiple variable horizontally to make a single variable in Matlab?
For Example, I want to join:
year = 2001, month = 06, day = 15
to make one variable '20010615' ...
1
vote
1answer
20 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 ...
-3
votes
2answers
67 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, ...
0
votes
1answer
39 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 ...





