The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
32 views

How can I do FFT and IFFT in selected oval area of image in Matlab?

I'm trying to make phase-scrambled image using the code below. from vision science. (Dr. Prins made this code.) Im =mat2gray(double(imread('c:\nick\matlab\randomphase\Bear.jpg'))); %read and rescale ...
0
votes
3answers
48 views

SuperCollider: automatic phase and frequency alignment of oscillators

Anyone has an idea for automatic phase and frequency alignment? To explain: assume, you have an Impulse in = Impulse.ar(Rand(2, 5), Rand(0, 1)); now I'd like to manipulate the frequency of another ...
1
vote
1answer
21 views

With the audio tool sox, how can I determine whether a stereo recording is in fact mono?

I have stereo files (2-channel-WAV) which sound totally like mono recordings. Is there a way to let sox run over the file and output whewther the 2 channels are the same or not? Or is there another ...
0
votes
0answers
35 views

Phase coding algorithm in Matlab

I'm trying to implement the Phase coding algorithm in Bender et. al paper "Bender, W.; Gruhl, D.; Morimoto, N.; Lu, A., "Techniques for data hiding," IBM Systems Journal , vol.35, no.3.4, pp.313,336, ...
1
vote
1answer
28 views

chirp phase alteration

I am trying to create a swept-frequency cosine, and I want to be able to set the phase as I please. I tried that code, but I get an error. I want to create a vector mat(1:40), where I can manually set ...
0
votes
1answer
268 views

Recovering Phase from FFT

I'm trying to recover the phase of a simple (audio) signal in matlab: In matlab I do the following: % This wave is perfectly periodic in the sample. That is, % there are exactly 1000 periods. swave ...
2
votes
0answers
84 views

Java JAI phase correlation

My main field of interest is biomedical image processing. I have set of biomedical images and I need find phase between them. For computing phase between images, I am using phase correlation, but I ...
0
votes
1answer
133 views

Binary Phase Shift Keying in Objective-C or C / C++

I am making an iphone app that will transmit data via sound. It takes a binary string and plays a tone for each 1 and silence for each 0. (String example) NSString* asciiString = @"www.google.com"; ...
0
votes
1answer
402 views

elasticsearch search phase execution

I'm having issues and I don't know where to turn. Long story short, my web designer left me high and dry and I have no idea what he did and he refuses to answer his phone. I have access to the main ...
2
votes
1answer
187 views

How to “zero-phase-adjust” DFT output?

I understand the complex output of a DFT contains both "amplitude" and "phase" information at discrete frequencies. Amplitude[n] = sqrt((r[n]*r[n]) + (i[n]*i[n])) Phase[n] = (atan2(i[n],r[n])) ...
2
votes
0answers
105 views

quartz jobs in a cluster running on wrong node

uI have an application that is clustered in a 2+2 setup where 2 machines are used in alpha product phase, and the other two are used for real customers. all machines are looking at the same database, ...
0
votes
0answers
54 views

JSF trigger bean method when redirected

Basically, i need to trigger a bean method everytime I redirect to a new page with JSF. Instead of having to use something like setPropertyListener to every link or button that redirects, I would ...
1
vote
1answer
301 views

Screen resolution parameter setup, session bean and JSF Phase Listener

I am currently facing the following issue and I would appreciate if someone could help me out here. I am pretty new to JSF... I have a JSF application with the following architecture: The main ...
1
vote
1answer
121 views

Mercurial: what are the consequences of changing a phase?

In Mercurial, the phase of a revision can be changed arbitrarily. What are the consequences of a phase change for all possible transitions (public, draft, secret) x (public, draft, secret)? Which ...
0
votes
0answers
38 views

How to get the last phase to be executed in maven plugin

Basically I need my plugin to run POST maven execution, not matter which phases were executed, but I learned to know that this is not possible and I must attach my plugin to a particular phase :-(. ...
0
votes
2answers
195 views

Can I modify the Maven deploy phase to replace the maven-deploy-plugin with my own plugin?

I'm pretty new to Maven... What I'm trying to do is skip the maven-deploy-plugin during the deploy phase, while replacing it with my own plugin (i.e. I'm deploying to a non-repository location). I ...
1
vote
2answers
107 views

Maven run “dependency:tree” at start of “test” phase

I need to get the "dependency:tree" goal output from Maven at the start of the "test" phase, to help debug an issue for which I need to know what versions of everything are being used. In Ant it would ...
0
votes
0answers
260 views

mvn failsafe:integration-test

I am using maven 2 and integration test are in *IT.java files. When I run command mvn failsafe:integration-test integration test run fines. But when I run mvn integration-test it does not run my ...
1
vote
1answer
47 views

How do I find secret mercurial revisions?

I work on a lot of projects and sometimes I'd prefer to just delete my local repositories. However, I am limited in this by my occasional use of the secret phase (as I need to check how my repository ...
0
votes
1answer
140 views

maven - choose plugin phase from command line

i'm not a maven expert. in my maven2 project i have a couple of report plugins (dependency, tattletale etc). some of them are bound to 'pre-site' phase, some to 'site' phase. this way i have a nice ...
0
votes
1answer
29 views

re: fbml phase out

I have apps in fbml just received an email saying they will no longer work on june 1 what do i do? they say I have to create new apps in html surely there is another easier way to transition the ...
3
votes
2answers
572 views

Fixing phase unwrapping errors in Numpy

I have a series of unwrapped phases, with some unwrapping errors that consist of a jump of +/- a multiple of Pi: import numpy a = numpy.array([0.5, 1.3, 2.4, 10.3, 10.8, 10.2, 7.6, 3.2, 2.9]) In ...
2
votes
1answer
614 views

JSF: why is empty test in rendered invoked during apply request values phase during form submission under request scoped POST REDIRECT GET

This question is spawned from the partial answer to JSF2: why does empty test in rendered of panelGroup in composite prevent action from being called? In the following an Element is an @Entity with a ...
2
votes
2answers
1k views

phase correlation using FFTW

Now for phase correlation(two images) I use 1d transform. How to use 2d transform(it will be faster?), how to use wisdom and multythread support? if you give code example is will be better. void ...
0
votes
2answers
90 views

Executing a specific Maven phase

Is there any way to execute a specific phase in a maven build. For example, if I only want to run those plug-ins that execute in the pre-integration-phase, does Maven provide a means to do that? ...
0
votes
1answer
226 views

FFT window phase syncronising

Hey guys im not sure if you could help with this. Im currently devising a solution of demodulating a DPSK signal in C#. i have got sofar a working FFT with Phase detection BUT. I now have an issue ...
0
votes
1answer
2k views

Difficulty understanding the phase calculated by the FFT. Short matlab demo to illustrate

I'm testing the phase output of an fft of a sin signal and a cos signal. The script below creates the signals and performs an FFT on them. Bins who's amplitude is below a threshold are zeroed for the ...
6
votes
2answers
3k views

Matlab inverse FFT from phase/magnitude only

So I have this image 'I'. I take F = fft2(I) to get the 2D fourier transform. To reconstruct it, I could go ifft2(F). The problem is, I need to reconstruct this image from only the a) magnitude, and ...
2
votes
0answers
308 views

Two phase locking

I have been doing a few exercises for an exam, they dont come with answers so just looking clarification, it asks to find the errors in the table and to explain each error which 2PL principles it ...
0
votes
1answer
813 views

Instantaneous Phase in Matlab

I have a signal in matlab and what to calculate the instantaneous phase for a specific band. I want to filter the signal into this range (using a bandpass filter) and then get the instantaneous phase. ...
0
votes
1answer
66 views

Implementing third phase called merge after Reduce phase

I need to add a third phase – merge – which combines the outputs of separate, parallel Reduce tasks.This makes it possible to do things like joins and build cartesian products.Can anyone help me how ...
3
votes
1answer
224 views

How can I preserve subgroups when changing role to public in Copy Headers build phase in XCode?

currently, the hierarchy is flattened out, and all the headers files are copied into a single Headers directory, no matter what subfolder they were in, in my Classes folder. This is a problem when ...
3
votes
1answer
781 views

Eclipse and Maven: Run goal after a file is changed

I have a maven goal configured in the pom that is executed on compile phase. But also I need that goal to run after a specific file is changed to keep everything always up to date. i.e I want to save ...
15
votes
6answers
7k views

Extracting precise frequencies from FFT Bins using phase change between frames

I have been looking through this fantastic article: http://www.dspdimension.com/admin/pitch-shifting-using-the-ft/ While being fantastic, it is extremely hard and heavy going. This material is ...
3
votes
3answers
1k views

Maven phase executing twice

I require to generate some sources, so i attached a plugin goal to the generate-sources lifecycle phase. When I run mvn package it works fine, but when I run mvn install I noticed that my source ...
0
votes
1answer
551 views

DDS frequency synthesizer digital phase lock loop

I am working on a project about a frequency-hopping tranceiver. I want to implement a phase lock loop on FPGA i.e. a digital PLL. I am multiplying the incoming signal with a certain frequency and ...
0
votes
1answer
590 views

how to distinguish a jsf action or direct url link invoked the page

I have a situation, I have a session bean with list, this list I show in html data table. When the user hits the url from browser or normal href, I have to show all records. There is provision to ...
1
vote
3answers
159 views

RENDER_RESPONSE takes to long in seam

I write application using JBOSS Seam with Richfaces. Unfortunately some pages of it load very long especially when I want to show about 100 rows (or more) in table . Getting response from database ...
1
vote
1answer
214 views

OpenSSH Two Phase Login

I would like it if when I use OpenSSH like so: ssh user@host that it asks for a passphrase Please enter Passphrase: then asks for the password Please enter Password: Is this possible?
0
votes
2answers
193 views

Phases skipped when using PrettyFaces (JSF)

When using PrettyFaces to map a page containing a form, all phases after Restore View are skipped and the response is rendered. Thus the form is not submitted and the model is not updated.
3
votes
3answers
7k views

How to skip install phase in Maven build if I already have this version installed in repo

I have a project that consist of 3 different libraries. When I run install script it takes all libraries from repo and run mvn clean install on them. But this version of library already installed in ...
3
votes
2answers
3k views

Maven - add custom phase to execute plugin with other configuration

I have two set of integration tests in one maven project - automatic and manual tests. The manual tests are few but tedious - they require pulling the plug of servers etc. I would like to create a ...
6
votes
4answers
4k views

Maven String Replace of Text Web Resources

I have a Maven web application with text files in src/main/webapp/textfilesdir As I understand it, during the package phase this textfilesdir directory will be copied into the ...
2
votes
2answers
1k views

JSF skips phases - How to debug that?

I have to debug a foreign jsf application thanks god. The problem is, that I submit a form, but the values aren't carried over. With a phase listener I can see, that the life cycle doesn't run ...
3
votes
2answers
384 views

Two-phase lookup: can I avoid “code bloat”?

Two-phase lookup question: Is there a more synthetic way to write this code, i.e. avoiding all those using directives? Something like using CBase<T>; is what I would like, but it is not ...
5
votes
5answers
406 views

“Phased” execution of functions in javascript

This is my first post on stackoverflow, so please don't flame me too hard if I come across like a total nitwit or if I'm unable ot make myself perfectly clear. :-) Here's my problem: I'm trying to ...
5
votes
2answers
5k views

How can I execute several maven plugins within a single phase and set their respective execution order?

I would like to breakup certain phases in the maven life cycle into sub phases. I would like to control the execution flow from one sub-phase to another, sort of like with ant dependencies. For ...
0
votes
1answer
910 views

Modifying JSF Component Tree in PhaseListener

I'm having an issue. I've implemented a PhaseListener, which is meant to add a style class to any UIInput components in the tree that have messages attached to them, and removes the style class if it ...
3
votes
1answer
1k views

How to perform ordered tasks in Maven2 build

I am trying to migrate a Java application built by Ant to Maven2. among other the build perform the following operations: 1) Running a javadoc doclet to find annotated Java files to be externalize ...
3
votes
1answer
1k views

Request-scoped beans and datamodel initialization?

UPDATE II: OK, I managed to narrow it down a little. I have a page with a datatable with sorting and filtering functionalities, both taking place in the DB. In other words, I do not use the embedded ...

1 2