Resample Data to Match X-values
I have X and Y data vectors and I want to resample Y to a new X that contains values that are not at even intervals. I've looked at the interp function, but it resamples by factors of the original. It appears that I can format my data into a time series and use the resample function, but this is awkward and interp ... 10 Mar 2010 15:19
Y axis plot labeling? Want auto scaling, but want to format...
Hi there, I have a series of graphs that are created in batches (up to 400) by a Matlab .m script. The y-axis values can range from less than +/- 2000 to over +/- 5000000. The Matlab auto labeling works well for small numbers (> +/-10,000) but any higher and it starts to plot the y-axis labels as (for example) -2.5,... 10 Mar 2010 19:47
how to set current zoom setting for next execution?
hi! I'm quit new to matlab. I really hope that someone can help me. I have a little bit problem on zoom for images. After I zoom a certain area on the images, how do I keep the current setting of zoom that need to be used for the next execution? I already tried hold, wait and resume. But the images will still ... 10 Mar 2010 14:11
Problems with Distributed Computing on mixed Win32 Win64 Cluster
So here in another rather obnoxious problem which I have not been able to resolve. I am trying an experiment with two Machines: Machine-A - Win64 - QuadCore i7 - Client on which I run matabpool 8 Machine-B - Win32 - QuadCore i7 - Host on which the JobManager-B and workers reside I would like to parallelize co... 10 Mar 2010 13:04
Freeman chain code
How to use freeman chain code in matlab? Thanks ... 10 Mar 2010 13:04
Grammar inference
Hi, I'm trying to implement an algorithm to retrieve a grammar from a set of strings, I'm new in this area...I want to use the pumping lemma algorithm, I searched in the Matlab functions for something, but I didn't find anything and I'm having some difficulty implementing it. So maybe someone here can help me with this... 10 Mar 2010 13:04
Multiple equitions and multiple variables with boundaries
Hi, I'm a beginner with MatLab and I have to solve a rather tricky problem. I have created 6 functions, which all depend on 5 variables, of which for two I have found a relation, so actually there are 4. But those 4 variables do have boundaries. The boundaries given are: Lc : 0.25 < Lc < 0.30 Ro: Ro < 0.05 Ri... 10 Mar 2010 16:26
how to restore GUI after it has terminate by function waitbar in the GUI
can anyone help me to restore my GUI after running the waitbar processs.... i got a program that will browse for 1 folder and scan element inside that folder. to make my GUI more advance i insert a waitbar m-file in the GUI main file. but, unfortunately, after the waitbar end, my GUI disappear too...may i know can som... 10 Mar 2010 13:03
Creating a spline from a list of points and calculating the tangents to it
Hi, I'm trying to create a spline from a set of points which form a closed contour and calculate the tangents and normals to the curve at its break points. I've got some code which does most of the work, but I don't understand where its failing. My code just comprises of a few lines, please have a look: %%%%%%... 10 Mar 2010 13:03
Calling Java Main Method from Matlab
Can anyone tell me how to call a Java class main method, that takes in a command line input string, from Matlab. My simple class looks something like this: public class Calculate_square public static void main (String[] args){ int input, output; input=args[0]; output=input*input; System.out.p... 11 Mar 2010 02:22