Re: An array problem
"ali kucur" <kobay000@gmail.com> wrote in message <kalho4$nug$1@newscl01ah.mathworks.com>...> 'd' array's size equal to "sutun". for example if sutun=4 then the process must be:> >...
View ArticleRe: how to change color for multiple data sets plotted on one graph
dpb <none@non.net> wrote in message <kafhtk$rht$1@speranza.aioe.org>...> On 12/13/2012 8:03 PM, Greg Heath wrote:> > "Natasha" wrote in message...
View ArticleRe: Scatter plot marker size
"Chuck37" wrote in message <kad5po$qnn$1@newscl01ah.mathworks.com>...> I've been successfully using scatter on my Linux box to do scatter plots with a constant marker size. 3 point seemed to...
View ArticleRe: Counter Output in DAQ
I got the program to run the number of times by using a "for" loop. If anyone has any suggestions on how to do the second part with the functions in the session interface please let me know. I've used...
View ArticleRe: How can one interpolate data points within a set?
On 12/17/2012 3:01 PM, Neil Mehta wrote:> Hello all!> I am fairly new to MATLAB, but I have been using it extensively since I> have started college and it is very powerful.> I was told that...
View Articleinterpolation, sinc
hi, thank you for to notice to my question I want to resolve a problem but I can't Assume we have an n-by-m matrix A, we want to quantize every row of it (just rows not columns), then rows is...
View ArticleRe: labReceive goes to sleep
One good news and one not so good news. The good news is that I found the solution. I suspected that the labReceive does not respond promptly and goes to sleep until all workers are done when the...
View ArticleRe: Extract values from a string
On 12/17/2012 2:45 PM, dpb wrote: ...> I just did submit a bug report; this is clearly just wrong imo. Already confirmed...> I am writing in reference to your Service Request # 1-KTAOIZ>...
View ArticleFFT
Hi all When we append Nz zeros to an input signal with N samples and transform it to Fourier transform (with FFT), the result is same with position that we use fftshift(fft(fftshift(signal))) or...
View ArticleRe: Matlab or Simulink model for winding a tape from one reel to another
"Michael Mueller" <Michael_Mueller@mra.man.de> wrote in message <01bdb607$758c57c0$43ac1d8b@arp1609>...> Hello,> I'm searching a Simulink or a Matlab model for a drive system which...
View ArticleHelp with lsqcurvefit
Hi, I am trying to fit a curve with the non linear LS method. When I try with the examples provided by Mathworks everything works fine but when I try with my data, the algorithm stop at the first...
View ArticleRe: Help with lsqcurvefit
"Kevin " <kevheritier@gmail.com> wrote in message <kaoe1i$4ar$1@newscl01ah.mathworks.com>...> Hi,> > I am trying to fit a curve with the non linear LS method. When I try with the...
View Articlesubvector without zeros
How can I obtain vectors whenever find a zero or zeros, for example this is the input a=[16 17 32 0 0 63 79 80 0 0 0 113 0 129 130] and I want to obtain vectors and their sum a1={6 17 32 }= sum{a1}...
View Articleobtain independent vectors of non zeros
How can I obtain cell array whenever I find a zero or zeros, for example: a=[16 17 32 0 0 63 79 80 0 0 0 113 0 129 130] I want to obtain subsets of non zeros and their sum a1={16 17 32 } and their...
View ArticleRe: text file data into matrix format
dpb <none@non.net> wrote in message <kancij$ge5$1@speranza.aioe.org>...> On 12/17/2012 1:07 AM, ali wrote:> > dpb <none@non.net> wrote in message...
View ArticleClosest values with 2 vectors
I have 2 matrices, lets say A=[1 5 7 9 13 15 19 24 27] and B=[2 6 10 13 17 18 20 25]. I want to find out the values / position in A which are same or nearest to every value of B. P.S: The result should...
View ArticleRe: How can one interpolate data points within a set?
Thank you! Finally put together this little function that seems to work. function [corrected] = interpolatedata(data) corrected = data; x = 1:length(corrected); count = 0; for i = 2:length(corrected)...
View ArticleRe: subvector without zeros
On 12/17/2012 9:33 PM, diana escalona wrote:> How can I obtain vectors whenever find a zero or zeros, for example this is the input>> a=[16 17 32 0 0 63 79 80 0 0 0 113 0 129 130]>> and...
View Articleremoving sequential dependencies with ARIMA
Hello Everyone, I am able to estimate the sequential dependencies in data with econometric toolbox, using ARIMA(1,0,0) model with a command model=arima(1,0,0); model=estimate(model,x); % where x is an...
View ArticleRe: Extract values from a string
I still stand by my position : this is not a bug. Bruno
View Article