0
votes
1answer
16 views
basic on matlab
what are the differences between a MATLAB script file and a MATLAB function?
0
votes
1answer
18 views
Basics of normalized cross correlation
I am trying to use normxcorr2 (normalized cross-correlation) from MATLAB for calculating velocity of moving shapes in a developing embryo. I have 3 questions:
1) My image size is …
3
votes
0answers
53 views
matlab oop: is it slow or am I doing something wrong ?
I'm experimenting with matlab oop, as a start I mimicked my C++'s Logger classes and I'm putting all my string helper functions in a String class, thinking it would be great to be …
2
votes
7answers
177 views
Mathematical Programming Languages
Given my previous questions about the the usage of AMPL.
Are there any other programming/scripting languages that are strictly meant for mathmatical processing?
For example: Ma …
2
votes
4answers
73 views
How do I create a string using a loop variable in MATLAB?
I have a loop like this:
for i=1:no
%some calculations
fid = fopen('c:\\out.txt','wt');
%write something to the file
fclose(fid);
end
I want data to be written to dif …
-1
votes
2answers
55 views
How to make a basic line plot in MATLAB?
I have
a =
54.1848
50.0456
99.9748
83.1009
63.1457
91.7577
64.0805
48.2090
75.7711
t =
79.7077
31.0913
14.9389
10.8303
16.4844
26. …
2
votes
3answers
34 views
Remove Characters from EOF while Writing to File in Matlab
In Matlab, after creating a certain number of lines and printing them to a file, I have the need to delete a line and rewrite the rest of the data to that same file. When I do so, …
2
votes
4answers
75 views
Mesh Generation in MATLAB
Is there any subroutine, in MATLAB, that takes in a list of points, and return me a good mesh that I can use to show to my colleagues, such as this?
Actually, all I need is just …
2
votes
1answer
39 views
MATLAB: help needed with Self-Organizing Map (SOM) clustering
I'm trying to cluster some images depending on the angles between body parts.
The features extracted from each image are:
angle1 : torso - torso
angle2 : torso - upper left arm
. …
2
votes
3answers
104 views
call matlab APIs in C C++
Hi,
I just heard from somewhere that for numerical computation, "Matlab does offer some user-friendly APIs. If you call these APIs in your C/C++ code, you can speed up computation …
1
vote
3answers
55 views
Eye-detection in MATLAB
I have two images. In one of the images, my eye is in the center position and in the other image, it is in the left. How do I find out whether my eye is in the left or the right?
…
1
vote
2answers
74 views
Optimizing extraction of data from a MATLAB matrix?
Given an n-dimensional matrix of values: what is the most efficient way of retrieving values by arbitrary indices (i.e. coordinates)?
E.g. in a random 5x5 matrix, if I want the va …
5
votes
4answers
104 views
How Do I Generate a 3-D Surface From Isolines?
I have a set of isoline points (or contour points) such as this:
Each point on an isoline has its own respective X, Y, and Z coordinate. Since they are isolines, that means that …
0
votes
0answers
35 views
Does anyone use AMPL anymore
I took a class on "Intelligent Decision Making" (which was mostly an Problem Optimization class). In the class we learned about AMPL and how to extend the solvers. I haven't heard …
0
votes
3answers
55 views
Remove progress bar from published document in MATLAB
I am using the publishing functionality of MATLAB to generate a quick report of some analysis I'm running. Since the analysis is quite time-consuming, I've added a progress bar to …
