First
|
Prev |
Next
|
Last
Pages: 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
update GUI while in .m I have some code that runs cycles through modeling data. While it does this it is usually set to fprintf the data out to the command window. I am putting a GUI front end on the code and would like this data that is fprintf'd to go out to the GUI in some text boxes. I can't figure out how to update the GUI while the ... 18 Jun 2010 15:44
finding intersection coordinate of straingt line & curve Hi.... i have a linear equation to plot a straint line y=3073x-860 and x-y data to plot a non.uniform shaped curve with coordinates [(0,2765) (0.2,2580) (0.4,2370) (0.6,2160) (0.8,1905) (0.9,1765) (1,1490)] Now, the problem is , i want to find the intersection point of the curve and the straight line.... ... 20 Jun 2010 09:06
Legend in scatter plot Hi all, I'm making a bubble plot using the scatter function in Matlab to show the density of fish schools in a map of lat and long coordinates. That is, the more dense the fish school, the larger the circle on the scatter plot. I can't figure out how to get a legend on the graph that shows what the different ... 18 Jun 2010 15:44
Displaying a value on a plot I want to display a value on the plot...my code is as follows.. plot(a,b); hold on plot(a,c); axis([400 850 0 1]); legend('first','second'); text(465,0.9,'Value=N(i)'); I want to display the value stored in N(i) on the plot.When i used this code it displaying just that string. Instead i want to display the v... 18 Jun 2010 16:50
finding intersection coordinate of straingt line & curve Hi.... i have a linear equation to plot a straint line y=3073x-860 and x-y data to plot a non.uniform shaped curve with coordinates [(0,2765) (0.2,2580) (0.4,2370) (0.6,2160) (0.8,1905) (0.9,1765) (1,1490)] Now, the problem is , i want to find the intersection point of the curve and the straight line.... ... 18 Jun 2010 15:43
Request help fixing 3D animation tia sal22 Greetings All I have a 2D and 3D animation that I would like help fixing and syncing. 1st question is that the 3D animation is twice as fast as the 2D animation how can I make it so they are the same speed? (notice the number in degrees) 2nd question How can I speed up the animation so it's doesn't look li... 18 Jun 2010 14:38
FM demodulation In file exchange there is an example of Fmdemodulation but i do not know what beta is; nayone knows something? thank you very much function y = FM(x,beta) [r, c] = size(x); if r*c == 0 y = []; return; end; if (r == 1) x = x(:); len = c; else len = r; end; Df = 2*pi*beta*100; x... 18 Jun 2010 15:43
FM demodulation In file exchange there is an example of Fmdemodulation but i do not know what beta is; nayone knows something? thank you very much function y = FM(x,beta) [r, c] = size(x); if r*c == 0 y = []; return; end; if (r == 1) x = x(:); len = c; else len = r; end; Df = 2*pi*beta*100; x... 18 Jun 2010 14:38
matlab opengl figure performance: how to use hardware acceleration Hello, I am trying to plot some figures really fast using pcolor (which is an actually 2D surface). I tried to use the opengl hardware acceleration but got nothing improvement. using opengl software: K>> opengl software K>> opengl info Version = 1.1.0 Vendor = Microsoft Corporation Renderer ... 18 Jun 2010 14:38
Memory Output Inside-> Help me understand my memory!? I've run into memory problems when executing my matlab code, my code crashes after a few uses even after I have cleared variable and clc'd. My problem requires analysis of a significant amount of image data and I usually have several very large arrays (1500x6000 doubles or logical) . My current problem - after I exc... 18 Jun 2010 14:38 |