First
|
Prev |
Next
|
Last
Pages: 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928
filter dsign i need to determine the peak values of high pass filter. pls tell me how, what function need to usd in matlab ... 16 Apr 2010 12:50
local minimum how to get the how to get the second local minimum and thereafter average all the values from the second local minimum ex: 1 2 3 4 5 6 3 2 1 4 5 6 7 first local minimum =3 R = average(3,2,1,4,5,6,7) thanks in advance ... 20 Apr 2010 15:55
Real-Time Windows Target and RS232 communication? "Uzumaki " <narutofan01234(a)yahoo.com> wrote in message <hq9hk5$hun$1(a)fred.mathworks.com>... 1. Yes, RTWT can handle 115200 baud. 2. Approximately, 1/100 = 0.01 s (r2007b, r2008a, r2008b) 3. Because USB is not real-time by design. 4. Follow the link http://www.mathworks.com/matlabcentral/linkex... 23 Apr 2010 20:59
moving average can anybody tell how to calculate the moving average at a lag of 10 of about 65000 data thanks in advance ex: t = [0.5 1 1.5 2 2.5 3 3.5 4 4.5 5 5.5 6 6.5 7 7.5 8 8.5 9 9.5 10] Q=[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20] when t = 5; Q = average(1:10) t = 10; Q=average(11:20) ... 20 Apr 2010 15:53
using vectors as indices Does anyone know how I can use a vector V, for instance V = [3 2], as an index for a multidimensional array M = [ 1 2 3 ; 4 5 6 ; 7 8 9 ], so that M(function(V)) = 8 ???? ... 20 Apr 2010 15:55
filter design in matlab this is my signal: y=awgn(x,20,'measured'); %add white i need to pass this signal in high pass filter, this is high pass filter function: H = fdesign.highpass(1e3,1.1e3,0.5,1,(1e4/2)); my doubt is, since i need to pass this in highpass filter design, where should i mention that signal " y" in high pass filt... 16 Apr 2010 12:50
Errors and issues with NLINFIT Hello Peter, I tried using statset('robust','on') in my code, but it gave me an error I used the following code: options = statset('FunValCheck','off','DerivStep',10^-12,'robust','on'); beta = nlinfit([parameter_values(3,:);parameter_values(4,:)],Y,@NTCPmodel, beta_seed,options); And this the error: ??... 20 Apr 2010 15:58
? remove dicom info the help Jeff gave for using DICOMANON is the same as in the help file. I have tried this and while it seems to do what the script says, and the Series and Study IDs seem to be preserved, something isnt kept the same. for example, i use ITK-SNAP (http://www.itksnap.org/). if i load in an image from a series befo... 20 Apr 2010 15:58
Weighted sampling without replacement Hi Roy and all, I found your code does not work for scalars and correct some details: function v=randsampleWRW(x,k,w) % same than randsample but Without Replacement and with Weighting % Returns V, a weigthed sample of K elements taken among X without replacement % X a vector of numerics % K amount of elemen... 16 Apr 2010 11:41
Help needed with neural network Hello people, I am doing a project that involves making a neural network. I get data sets for that neural network from some other program that i use to generate 2 vectors: mdf that is <1x195> and rms that is also <1x195> which i merge into one input like inp1=[mdf;rms] so it's dimensions are <2x195>. I also get targe... 26 Apr 2010 23:57 |