Search the web
Sign In
New User? Sign Up
jsci
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 260 - 293 of 369   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
260
Hi Mark, what would be the easiest way to implement a legend/key? are there any examples which can be looked at without having to write alot of Java2d code?? ...
rockmonaco
Offline Send Email
Mar 10, 2006
1:57 am
261
Hi, My suggestion would be to write it as a Swing component, and then add it to a layout manager along with the graph. A component something like (in ...
Mark Hale
mj_hale
Offline Send Email
Mar 10, 2006
2:17 am
262
Does anyone know the algorithm used in the running median method, i.e. Turlach vs. Stuetzle or perhaps another method. I know, I know, I suppose I could get...
kogalurshear
Offline
Mar 15, 2006
7:30 pm
263
Let me know which it is, and I'll note it in the javadoc. public static double[] runningMedian(double[] v, int width) { if(v.length<width) throw new...
Mark Hale
mj_hale
Offline Send Email
Mar 15, 2006
8:56 pm
264
Hi, I'm working on the NetBeans integration of JSci. I'm not really sure how I could do the parsing right. My source is a InputSource and I need a way to...
Torsten Knodt
tk_fhd_aui
Offline Send Email
Mar 20, 2006
6:28 pm
265
Hi, I've committed to the CVS an updated MathMLParser class for you. I have added static translateXXX(Node node) methods. You can pass them the MathMLDocument ...
Mark Hale
mj_hale
Offline Send Email
Mar 20, 2006
7:14 pm
266
Hi Mark, > I've committed to the CVS an updated MathMLParser > class for you. I have added static translateXXX(Node > node) methods. You can pass them the...
Torsten Knodt
tk_fhd_aui
Offline Send Email
Mar 20, 2006
9:31 pm
267
Hi everyone, i'm having hard times trying to get the JSci package to work. I've literally followed the instructions contained in the index.html file: 1-...
simon_982
Offline
Mar 28, 2006
10:13 am
268
Try import JSci.maths.*; ... ___________________________________________________________ To help you stay safe and secure online, we've developed the all new...
Mark Hale
mj_hale
Offline Send Email
Mar 28, 2006
1:10 pm
269
... Thanks a lot, that worked. I can't believe it was only that, it was drivin me crazy......
simon_982
Offline
Mar 28, 2006
6:20 pm
271
Ok, now that i solved some silly problem i really need your help. I've got a discrete signal stored in a 256 elements array. What i need is to compute its...
simon_982
Offline
Mar 30, 2006
7:18 pm
272
Unfortunately, I know even less about wavelets :/ I believe the DougJamesDau2 example is similar to what you want to do. But use the ...
Mark Hale
mj_hale
Offline Send Email
Mar 30, 2006
7:51 pm
274
I was wondering why the method ____ Signal filter(double[] f) Apply the given array as a convolution Filter and return a new Signal. ____ does return a shorter...
simon_982
Offline
Apr 5, 2006
8:36 am
275
It has to, otherwise the array index would go out of bounds: y(k) = \sum_{l=0}^m f(l) x(k-l) In the discrete case, signals only extend over a finite range....
Mark Hale
mj_hale
Offline Send Email
Apr 5, 2006
3:32 pm
276
... I've unsterstood the reason why it would go out of bound. Anyway I extended the original signal simmetrically (to avoid discontinuity problems) with a...
simon_982
Offline
Apr 5, 2006
8:44 pm
277
If you have a signal of 2N and filter of N, you should get an output of N+1. Is there any known standard/example signal that when convoluted with some...
Mark Hale
mj_hale
Offline Send Email
Apr 5, 2006
10:16 pm
278
In addition to what i just wrote, why does the resample method return me a distorted and noisy signal?!? Is there anything wrong with the java code or am i...
simon_982
Offline
Apr 5, 2006
10:17 pm
279
I've added a test case for resample() to the cvs. It looks like it works ok. ... ___________________________________________________________ To help you stay...
Mark Hale
mj_hale
Offline Send Email
Apr 6, 2006
1:38 am
280
... And that is the correct size of the result? What if i want to compare it with the original signal? Should I resample it to 2N samples? Or that is not...
simon_982
Offline
Apr 6, 2006
8:48 am
281
... Sorry I didn't understand where u added the test case to... Anyway if u look at the images i posted u can see that the two signal are quite different. The...
simon_982
Offline
Apr 6, 2006
8:52 am
282
My thinking would be something like this: (psuedocode) signal(N) signalPadded(M) = pad(signal) output(M-F+1) = signalPadded(M).convolve(filter(F)) ...
Mark Hale
mj_hale
Offline Send Email
Apr 6, 2006
4:21 pm
283
Ahhh, I tested EngineerMath.resample(), not signal.resample(). Are you doing out=signal.resample().evaluate()? Because that would involve Cascades and that...
Mark Hale
mj_hale
Offline Send Email
Apr 6, 2006
4:33 pm
285
Hi, I'm trying to use the luDecompose method of DoubleSquareMatrix, and am not getting the correct answer to my test problems. I'm hardly a master of LU...
ssinai
Offline Send Email
May 29, 2006
9:10 pm
286
Hi, luDecompose performs the LU decomposition up to a permutation given by the pivot array. That is, the original matrix M is permutated to a matrix M' and...
Mark Hale
mj_hale
Offline Send Email
May 30, 2006
1:15 am
287
Hi Mark, I'm always impressed with your quick responses. Unfortunately, I'm one of those people who hit the math wall at long division, and have no idea what ...
Steve Sinai
ssinai
Offline Send Email
May 30, 2006
9:01 am
288
Yes, it does. The LU decomposition is often an intermediary step, so the fact that it is permutated (scrambled) usually doesn't matter because you either...
Mark Hale
mj_hale
Offline Send Email
May 30, 2006
3:29 pm
289
Hi Mark, If it isn't too much trouble, adding the textbook version of LU decomposition to JSci would be helpful. Part of the reason for my editor is as a...
Steve Sinai
ssinai
Offline Send Email
May 30, 2006
11:39 pm
291
Added v0.944. ... From: Steve Sinai <ssinai@...> To: jsci@yahoogroups.com Sent: Wednesday, 31 May, 2006 12:10:18 AM Subject: Re: [jsci] luDecompose...
Mark Hale
mj_hale
Offline Send Email
May 31, 2006
6:41 pm
292
Hi Mark, Seems to work! Thanks. Steve Sinai ... === message truncated === __________________________________________________ Do You Yahoo!? Tired of spam?...
Steve Sinai
ssinai
Offline Send Email
Jun 3, 2006
3:20 am
293
Does JSci have any any kind of linear regression-solving capabilities? I searched through, but couldn't find anything. It's no big deal if it doesn't, as I...
ssinai
Offline Send Email
Jul 19, 2006
6:06 pm
Messages 260 - 293 of 369   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help