Help Desk Pro has three different interfaces for all three domains of users, providing them with the controls required by them, to save time the application generates reports, which are dynamic as well, taking input from admin and generating results.As for the user account management, the user him/herself can edit their account and personal set-up and the admin can make representatives and admin.
the program is used to find out the FFT using time in decimation and solves problem of dsp fft ,compared with inbuilt fft and goertzel function , working well given with output also.
Short description: GUI Ant-Miner is a tool for extracting classification rules from data. It is an updated version of a data mining algorithm called Ant-Miner (Ant Colony-based Data Miner), which was proposed in 2002 by Parpinelli, Lopes and Freitas. GUI Ant-Miner differs from the original algorithm as follows: It has a friendly graphical user interface, makes possible the use of ant populations within the Ant Colony Optimization (ACO) concept, data input file is standardized with the well-known Weka system, and runs on virtually any operating system since it is written in Java.
The JavaServer Pages (JSP) Expression Language (EL) is a
simple non-procedural scripting language that can be used
to evaluate dynamic expressions within a JSP page. Each EL
expression evaluates to a single value that is then expressed as
text in the output of the JSP (when used in template text), or
passed as a value to a JSP action.
As such, it is ideal for adding dynamic elements to the HTML
page (or other text output) generated by the execution of a JSP.
--
------------------------------------------------------------------------------------
-- DESCRIPTION : Demultiplexer
-- Width: 8
-- Number of terminals: 4
-- Output enable active: HIGH
-- Output active : HIGH
-- Download from : http://www.pld.com.cn
------------------------------------------------------------------------------------
This application note considers the design of frequency-
selective filters, which modify the frequency content
and phase of input signals according to some specification.
Two classes of frequency-selective digital filters
are considered: infinite impulse response (IIR) and finite
impulse response (FIR) filters. The design process
consists of determining the coefficients of the IIR or FIR
filters, which results in the desired magnitude and
phase response being closely approximated.
This application note considers the design of frequency-
selective filters, which modify the frequency content
and phase of input signals according to some specification.
Two classes of frequency-selective digital filters
are considered: infinite impulse response (IIR) and finite
impulse response (FIR) filters. The design process
consists of determining the coefficients of the IIR or FIR
filters, which results in the desired magnitude and
phase response being closely approximated.
Two scripts are included here.
1. convsys.m - combines the state space representation of two systems connected in series.
[Ao,Bo,Co,Do]=convsys(A1,B1,C1,D1,A2,B2,C2,D2)
This algorithm gives the convolution of two state space representations
| A1 B1 | | A2 B2 |
u ==> | | ==> | | ==> y
| C1 D1 | | C2 D2 |
The algorithm also accepts state space objects as inputs and gives out a state space object as output.
2. sysfeedbk.m
[Ao,Bo,Co,Do]=convsys(A1,B1,C1,D1,A2,B2,C2,D2)
Gives the closed loop state space representation for two systems connected with negative feedback in the following manner.
| A1 B1 |
u ==> | | ==> y
+ o | C1 D1 | |
- | |
| | A2 B2 | |
|= | |= |
| C2 D2 |
The zip file also contains checkcompatibility.m , which checks the compatibility of matrix dimensions in the system and cleanss.m which can be used to clean a state space representation.