First
|
Prev |
Next
|
Last
Pages: 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324
Using slider to updating audio signal being played..real posttia sal22 Rick T wrote: function slider1_Callback(hObject, eventdata, handles) sliderValue = get(handles.slider1,'Value'); %puts the slider value into the edit text component set(handles.sliderValue_editText,'String', num2str(sliderValue)); freq=1; That line creates a variable named 'freq', not a vari... 9 Feb 2010 17:25
Using slider to updating audio signal being played..real post tia sal22 Sorry if this got posted twice gremlins started playing with my computers. Greetings All I'm trying to use a slider to adjust the frequency of an audio signal that is played out my audio card in "realtime" using matlab. I keep getting an error reference to non-existent field 'freq'. this is the line of code ... 9 Feb 2010 17:25
adding data to uitable I am programming a GUI. I have a uitable that may potentially contain tens of thousands of records. I have no problem adding the data to the table, however it appears as if MATLAB does not make the data visible until you scroll to a portion of the table and takes a while (several seconds) to show the data after scrolli... 9 Feb 2010 17:25
Neural network toolbox acting weird? I am new to the neural networks toolbox, and am confused with its usage. Please take a look at the following simple code, and the output I received: ----------------------------------------------- p = [0 1 2 3 4 5 6 7 8]; t = [ 0 1 0 0 1 0 1 1 0 ]; net = newff(p,t,20, {'tansig' 'logsig'}); [net,tr,y1] ... 20 Feb 2010 01:27
delaunay "John D'Errico" <woodchips(a)rochester.rr.com> wrote in message <gssi41$igm$1(a)fred.mathworks.com>... hajoura <fradi.hajer(a)gmail.com> wrote in message <83b5d771-5ab9-45fd-9cb1-4efe819ea633(a)k2g2000yql.googlegroups.com>... Thank u, yes , i know that they used delaunay not delaunay3, but this paper contain ... 9 Feb 2010 16:16
Converting wav to midi format Henry <obi_o2005(a)yahoo.co.uk> wrote in message <ef0350a.-1(a)webx.raydaftYaTP>... Can anyone tell me how you would convert a wavfile input into MIDI format in MATLAB please? Henry, Did you ever figure out how to convert from wav to MIDI? Thanks, David ... 9 Feb 2010 16:16
How do I find out which dataset was used for train, validation and test in a trained neural network? I'm trying to do a code to train as many networks as I want automaticaly. Nevertheless I'm finding a hard work trying to get the datasets which were used for train, validation and test. What I do, but I don't know if it's right is to use diverand function befor train function. Is it the righway? ... 9 Feb 2010 16:16
Combining Image Matrices Hi there, I wanted to know if someone could explain to me how are image matrices (given to be of lower resolution) "merged/combined" to create another of greater size (thus resolution as well). For instance, if I have 4 matrices that are 144x144 and from these I would like to get a 576x576 image. I tried doing puffing ... 9 Feb 2010 15:07
PORTSTATS function Hi all, In matlab PORTSTATS function, how do they calcualte PortRisk and PortReturn? For example, ---------------------------------- ExpReturn = [0.1 0.2 0.15]; ExpCovariance = [0.0100 -0.0061 0.0042 -0.0061 0.0400 -0.0252 0.0042 -0.0252 0.0225 ]; PortWt... 9 Feb 2010 15:07
Trim figure whitespace around axes Hello, I am using Laurent Vaylet's wordreport.m to automatically make daily Word reports that contain matlab figures. My report has 8 possible plots, similar to subplot(4, 2, 1) to subplot(4, 2, 8). But I only plot some of these plots on days when some data is missing. That means I might only have subplot(4, 2... 10 Feb 2010 17:56 |