First
|
Prev |
Next
|
Last
Pages: 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894
How to add a picture in the GUI? Add an axes object to your GUI then add this to your OpeningFcn axes(handles.axes1); TempIm=imread('School Logo.jpg'); image(TempIm); set(handles.axes1,'xtick',[]); set(handles.axes1,'ytick',[]); ... 23 Apr 2010 17:34
retrieving the data from a cell array I have a nonhomogeneous cell array "A" in which some cells are stored as for example A{1,1} while others are stored as for example A{1,1}{1,1}. when running a loop how can I retrieve the data if is not homogeneous? ... 23 Apr 2010 17:34
Least square fitting You can also use the ezyfit toolbox. http://www.mathworks.com/matlabcentral/fileexchange/10176-ezyfit-2-30 Recognising the error function, you can fit your data with showfit('P(A) = 100*erf((A-theta)/sigma); sigma=1e-4; theta=1e-4'); yielding: sigma = 0.00040156 theta = 4.8345e-005 Frederic. ... 23 Apr 2010 17:34
Optimization of function Hi All I have a GUI that contain a checkbox with a pushbutton. When I press the pushbutton it runs the function under. The function contain a switch statement where the case that is run depend on the choice/value choosen from the checkbox. The code work fine, but I want to optimize my code.For every case in the swit... 23 Apr 2010 17:35
precision how can i reduce the precision of an floating point number??? please any one help me... ... 23 Apr 2010 17:35
DATA TYPES in my program a result comes in a matrix form.. i need to check whether each element in the matrix is same or not...for that i take the first element and check it against the all element... in the result it shows not equal,though it equals.. i think its because of high precision... how to overcome this problem.. ca... 23 Apr 2010 17:34
GA start point My software needs to choose "good" start point for GA. The GA is choosing points which define membership functions for Fuzzy logic controler. I need to inclued constrains which will make sure that these points are not the same (I want triangle MFs). 1. How can I include constraints - GA chooses initial population and... 23 Apr 2010 17:36
converting ASCII to hex Hello i want to know if there is a methode or command that converts ASCII caractere to hex and thanls in advance ... 23 Apr 2010 17:34
masked max (without a for loop) Wazza, Disclaimer: It's 10pm on friday night - totally not thinking straight, so there may yet be a better alternative. Still, this might get you some way there. I think sortrows() might help, although depending on the size of your data it may not be numerically very efficient. I think sortrows will be quicker th... 23 Apr 2010 17:34
Reading of Simulink block output value You might find useful the documentation for logging signals: http://www.mathworks.com/access/helpdesk/help/toolbox/simulink/ug/brh7636.html -James Justin wrote: In Simulink, I would like to read output of a block during execution of the simulation. For a 'Gain' block at top level (model xpcosc.mdl), ... 23 Apr 2010 17:35 |