spuc-users Mailing List for Signal Processing using C++
Brought to you by:
spuc
You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
| 2004 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
(3) |
Nov
|
Dec
|
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
(6) |
Dec
|
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2010 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
(1) |
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Tony K. <to...@py...> - 2014-05-10 17:53:12
|
Projects have been moved to github https://github.com/audiofilter/ github has automated build capability which can confirm that builds should work (on at least one platform) *before* downloading There have also been various bug fixes and updates https://github.com/audiofilter/spuc if you are interested in using these libraries, please star on Github. It’s unlikely I’ll continue to send any emails on this mailing list Tony |
|
From: mahsa a. <mah...@ya...> - 2014-04-12 08:35:22
|
Dear alli want to see the performance of spuc library, but i don't know what compiler should i use under a window 7 system to run examples of spuc library. i will thank if you help me |
|
From: mahsa a. <mah...@ya...> - 2014-04-12 08:34:33
|
Dear all i want to see the performance of spuc library, but i don't know what compiler should i use under a window 7 system to run examples of spuc library. i will thank if you help me |
|
From: Sergini K. <ser...@gm...> - 2013-06-12 13:31:55
|
Hello,
I'm sorry to bother here but I didn't find another option to get some help.
I would like to get some advice about the I should code an all-pole filter
using the *iir_df* class.
Here is the type of transfer function I would like to create:
(H(z) = 1 / (1 - a1*z[n-1] - a2*z[n-2] - ... - aN*z[n-N]) )
Here is what I've done so far:
* for (int i=0; i<block_size; i++) {
SPUC::iir_df<float>
synth_filt(pcoeffs,
order,
*
* zcoeffs,
*
* 1);
for (int k=0; k<block_size; k++) {
output[k] =
gain*synth_filt.update(input[k]);
}
}*
You should note that to avoid using files to define my filter's poles and
zeros I added a constructor to the *iir_df* class.
I've checked my constructor already. It's working just fine however my *
output* values are way to big in comparison of the input values.
Am I doing a "input---->FILTER---->output" process with this code? Am I
using the right functions for that?
Some modifications or a simple example of what I should be great of you!
Thanks
|
|
From: Vallabhaneni, K. (NE) <Kri...@gd...> - 2012-11-06 01:31:50
|
Have installed spuc. Is there a users guide ? can somebody help me in using the library modules ? Thanks Krishna Vallabhaneni |
|
From: artem r. <art...@gm...> - 2012-09-11 16:02:28
|
Hello.
I am investigating butterworth filter and found some unclear mathematics.
Following function is bilinear transformation, usially, as result, we
must get coefficients a0 a1 ... b0 b1
But in this case it loks like we got tranformated roots
May be someone can explain me how following works ?
td = a*a - 2*a*roots[j].real() + magsq(roots[j]);
roots[j] = complex<double>((a*a - magsq(roots[j])),
2.0*a*roots[j].imag())/td;
//! Do bilinear transformation
void bilinear(long n2) {
double td;
int j;
const double a = 2.;
if (odd) {
// For s-domain zero (or pole) at infinity we
// get z-domain zero (or pole) at z = -1
double tmp = (roots[0].real()-a)/(a+roots[0].real());
iir_1->set_coeff(-tmp);
gain *= 0.5*(1+tmp);
}
for (j=odd;j<n2;j++) {
td = a*a - 2*a*roots[j].real() + magsq(roots[j]);
roots[j] = complex<double>((a*a - magsq(roots[j])),
2.0*a*roots[j].imag())/td;
}
}
|
|
From: Shikha : H. <sh...@ha...> - 2011-06-10 13:10:51
|
Hello All, How can I create an FIR filter by using a Kaiser window? A sample code or pseudo code is much appreciated. With Best Regards, Shikha |
|
From: Israel F. A. <isr...@gm...> - 2010-03-04 02:45:07
|
Good evening, Anyone has examples of lowpass filters's implementations using SPUC? Regards, Israel. |
|
From: Tony K. <tk...@gm...> - 2008-05-08 18:21:23
|
Hi Matt, I do realise that and am planning to separate IT++ code before attempting to relicense anything. Although I have built python modules for it++ code as modified for pyspuc, I am not yet using it for anything. The filter program available is independent and contains no GPL code. If anyone would find python wrappers for the it++ code in spuc (a small subset of it++) useful I'd be happy to release the source. In fact I will consider making this code available although most of the options are probably available under scipy or numpy with the exception of some code like bch and turbo codecs, etc. Also, keep in mind that the IT++ is probably a few years old and has not been updated with bug fixes. Tony On Wed, May 7, 2008 at 11:46 PM, Matt Ettus <ma...@et...> wrote: > > > Tony, > > I fully respect your right to choose the license you wish to use for your > code, so I won't question that. However, according to the pyspuc web page, > "This library also includes code from IT++". IT++ is licensed with the GPL, > so I believe you would not be allowed to use that code in pyspuc as it is > currently licensed. > > Matt > > |
|
From: Matt E. <ma...@et...> - 2008-05-08 07:22:14
|
Tony Kirke wrote: > Hi Joseph, > Thanks for your interest in pyspuc and spuc. Currently pyspuc is not > available as open source. > There was a lot of work involved in creating it and I'm not willing to > give it away at this point. As the creator of the SPUC library, I > received no contributions or collaboration from the community and so > I'd rather either keep pyspuc source code private or sell it. I am > willing to provide the package itself on a case by case basis for > non-commerical usage, however, I don't currently have the ability to > build it on OSX. The build mechanism itself is quite complex and very > dependent on boost, python and other things. Tony, I fully respect your right to choose the license you wish to use for your code, so I won't question that. However, according to the pyspuc web page, "This library also includes code from IT++". IT++ is licensed with the GPL, so I believe you would not be allowed to use that code in pyspuc as it is currently licensed. Matt |
|
From: Tony K. <tk...@gm...> - 2008-05-07 17:49:14
|
Hi Joseph, Thanks for your interest in pyspuc and spuc. Currently pyspuc is not available as open source. There was a lot of work involved in creating it and I'm not willing to give it away at this point. As the creator of the SPUC library, I received no contributions or collaboration from the community and so I'd rather either keep pyspuc source code private or sell it. I am willing to provide the package itself on a case by case basis for non-commerical usage, however, I don't currently have the ability to build it on OSX. The build mechanism itself is quite complex and very dependent on boost, python and other things. If you could use pyspuc on winxp or ubuntu, then let me know. Tony On Wed, May 7, 2008 at 4:18 AM, Joseph Anderson <j.a...@hu...> wrote: > Hell0 All, > > I've begun using python + numpy + scipy and am interested in adding SPUC > to > my grab bag of tricks. > > While I do see there is documentation for spuc as a C++ library, I'm not > finding any information as to obtaining and then using the pyspuc package. > I > have found python code for filtplot (http://www.pyspuc.com/filtplot.html), > which is intriguing, but haven't seen anything else. > > Any hints for finding and getting pyspuc up and running on OSX 10.5.2? I > have both PPC and Intel machines I'd like to see it working on. > > Thanks in advance for the help. > > > My regards, > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > Dr Joseph Anderson > Lecturer in Music > > School of Arts and New Media > University of Hull, Scarborough Campus, > Scarborough, North Yorkshire, YO11 3AZ, UK > > T: +44.(0)1723.357341 T: +44.(0)1723.357370 F: +44.(0)1723.350815 > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > > > ***************************************************************************************** > To view the terms under which this email is distributed, please go to > http://www.hull.ac.uk/legal/email_disclaimer.html > > ***************************************************************************************** > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > Spuc-users mailing list > Spu...@li... > https://lists.sourceforge.net/lists/listinfo/spuc-users > |
|
From: Joseph A. <j.a...@hu...> - 2008-05-07 11:18:45
|
Hell0 All, I've begun using python + numpy + scipy and am interested in adding SPUC to my grab bag of tricks. While I do see there is documentation for spuc as a C++ library, I'm not finding any information as to obtaining and then using the pyspuc package. I have found python code for filtplot (http://www.pyspuc.com/filtplot.html), which is intriguing, but haven't seen anything else. Any hints for finding and getting pyspuc up and running on OSX 10.5.2? I have both PPC and Intel machines I'd like to see it working on. Thanks in advance for the help. My regards, ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Dr Joseph Anderson Lecturer in Music School of Arts and New Media University of Hull, Scarborough Campus, Scarborough, North Yorkshire, YO11 3AZ, UK T: +44.(0)1723.357341 T: +44.(0)1723.357370 F: +44.(0)1723.350815 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ***************************************************************************************** To view the terms under which this email is distributed, please go to http://www.hull.ac.uk/legal/email_disclaimer.html ***************************************************************************************** |
|
From: Tony K. <tk...@gm...> - 2008-04-13 02:18:48
|
Yes. There are issues under MSVC with the way the includes/namespaces are handled. Things were made to work under GCC and there are cases that have problems under Visual Studio because of differences between the compilers. I have cleaned this up but the code is not freely available. You may find www.pyspuc.com of interest as there is a python package which provides most of the functionality through compiled python extensions (available for WinXP free of charge). Also a filter program is available under WinXp and linux. Tony On Sat, Apr 12, 2008 at 6:59 AM, Bernard Latanowicz <la...@wp...> wrote: > Hello. > I need a piece of advice. > > I've got SPUC 2.3.1. > I want to compile test_filters.cpp. > When I compile, I get error: > > c:\program files\microsoft visual studio 8\vc\include\fstream(704) : > error C2872: 'std' : ambiguous symbol > could be 'std' > or 'SPUC::std' > > > > And when I comment the "for" loop in the main function, I get: > > c:\program files\microsoft visual studio 8\vc\include\streambuf(44) : > error C2872: 'std' : ambiguous symbol > could be 'std' > or 'SPUC::std' > c:\program files\microsoft visual studio > 8\vc\include\streambuf(43) : while compiling class template member > function 'std::basic_streambuf<_Elem,_Traits>::~basic_streambuf(void)' > with > [ > _Elem=char, > _Traits=std::char_traits<char> > ] > c:\program files\microsoft visual studio > 8\vc\include\streambuf(436) : see reference to class template > instantiation 'std::basic_streambuf<_Elem,_Traits>' being compiled > with > [ > _Elem=char, > _Traits=std::char_traits<char> > ] > > > I read about this error, but it didn't help me much more. Me and my > friend have no idea what to do. > I compiled this project under MS Visual 6.0, 7.0 and 8.0, and I always > got the same problem. > > I'll be grateful to You for help > Bernard > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > Spuc-users mailing list > Spu...@li... > https://lists.sourceforge.net/lists/listinfo/spuc-users > |
|
From: Bernard L. <la...@wp...> - 2008-04-12 13:58:07
|
Hello.
I need a piece of advice.
I've got SPUC 2.3.1.
I want to compile test_filters.cpp.
When I compile, I get error:
c:\program files\microsoft visual studio 8\vc\include\fstream(704) :
error C2872: 'std' : ambiguous symbol
could be 'std'
or 'SPUC::std'
And when I comment the "for" loop in the main function, I get:
c:\program files\microsoft visual studio 8\vc\include\streambuf(44) :
error C2872: 'std' : ambiguous symbol
could be 'std'
or 'SPUC::std'
c:\program files\microsoft visual studio
8\vc\include\streambuf(43) : while compiling class template member
function 'std::basic_streambuf<_Elem,_Traits>::~basic_streambuf(void)'
with
[
_Elem=char,
_Traits=std::char_traits<char>
]
c:\program files\microsoft visual studio
8\vc\include\streambuf(436) : see reference to class template
instantiation 'std::basic_streambuf<_Elem,_Traits>' being compiled
with
[
_Elem=char,
_Traits=std::char_traits<char>
]
I read about this error, but it didn't help me much more. Me and my
friend have no idea what to do.
I compiled this project under MS Visual 6.0, 7.0 and 8.0, and I always
got the same problem.
I'll be grateful to You for help
Bernard
|
|
From: Tony K. <tk...@gm...> - 2007-05-04 22:12:25
|
This has been fixed (now) in the latest code in CVS archive. If you don't want to check everything out just look at vector.cpp. On 5/4/07, matteo re <re....@gm...> wrote: > Hi > I'm a student and I would like to use spuc for an examination project. > I've downloaded the 2.3.1 release but I'm not able to compile it on > Ubuntu Linux. The error generated by the compiler (gcc version 4.1.2 > 20060928 (Ubuntu 4.1.1-13ubuntu5)) is the following: > > matrix/vector.cpp:38: error: specialization of 'bool > SPUC::Vec<T>::set(const char*) [with T = SPUC::complex<double>]' in > different namespace > matrix/vector.cpp:38: error: from definition of 'bool > SPUC::Vec<T>::set(const char*) [with T = SPUC::complex<double>]' > make: *** [matrix/vector.o] Error 1 > > Is some special flag required to avoid compiler checks or similar > (presumably the compiler has been updated since the last release of > the SPUC library). Sorry to boring with an OT and tanks in advance to > everyone. Any help should be greatly appreciated. > > Matt > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Spuc-users mailing list > Spu...@li... > https://lists.sourceforge.net/lists/listinfo/spuc-users > |
|
From: matteo r. <re....@gm...> - 2007-05-04 21:39:40
|
Hi I'm a student and I would like to use spuc for an examination project. I've downloaded the 2.3.1 release but I'm not able to compile it on Ubuntu Linux. The error generated by the compiler (gcc version 4.1.2 20060928 (Ubuntu 4.1.1-13ubuntu5)) is the following: matrix/vector.cpp:38: error: specialization of 'bool SPUC::Vec<T>::set(const char*) [with T = SPUC::complex<double>]' in different namespace matrix/vector.cpp:38: error: from definition of 'bool SPUC::Vec<T>::set(const char*) [with T = SPUC::complex<double>]' make: *** [matrix/vector.o] Error 1 Is some special flag required to avoid compiler checks or similar (presumably the compiler has been updated since the last release of the SPUC library). Sorry to boring with an OT and tanks in advance to everyone. Any help should be greatly appreciated. Matt |
|
From: Tony K. <tk...@pa...> - 2005-11-28 19:27:39
|
Hi Toni, I've found some problems with the same issue. In Array1D::destroy_(), I believe ref_count should be replaced with *ref_count. However, there are still issues as apparently the lack of a destructor of the gf class causes problems. Both of these classes were based on different source libraries so I not sure if the same problem was originally there. I believe there is an example of reed-solomon in the ITPP library (from where the code is taken). If that is all you need, I'd suggest you look at it. Tony Toni Castells <tca...@go...> wrote: Hi, I am using the SPUC libraries under Visual C++ 6.0. I had some problems compiling and linking them but I found a way to sort it out. But, I get an error when I am using the 'reed_solomon' class to encode a binary source of data. When I initialize my variable I get an assertion error. This is the code I am using to initialize it: SPUC::reed_solomon rsEncoder(8, 16); //Reed-Solomon(255, 223) When Visual C++ executes this line I get an assertion error in Array1D::destroy_() function. Does anyone know how to solve this problem? Toni ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_idv37&alloc_id865&op=click _______________________________________________ Spuc-users mailing list Spu...@li... https://lists.sourceforge.net/lists/listinfo/spuc-users |
|
From: Toni C. <tca...@go...> - 2005-11-28 14:09:32
|
Hi, I am using the SPUC libraries under Visual C++ 6.0. I had some problems compiling and linking them but I found a way to sort it out. But, I get an error when I am using the 'reed_solomon' class to encode a binary source of data. When I initialize my variable I get an assertion error. This is the code I am using to initialize it: SPUC::reed_solomon rsEncoder(8, 16); //Reed-Solomon(255, 223) When Visual C++ executes this line I get an assertion error in Array1D<T>::destroy_() function. Does anyone know how to solve this problem? Toni |
|
From: Tony K. <tk...@pa...> - 2005-11-10 21:15:30
|
Yes, I believe that you are right! It doesn't look like i was using dt at all. Must have been doing 1 sample/bit when I used this Tony Robert McGwier <rwm...@co...> wrote: In gaussian_filter.cpp: ts = s*t0; should be ts = s*t0*dt; ????? Bob -- Laziness is the number one inspiration for ingenuity. Guilty as charged! ------------------------------------------------------- SF.Net email is sponsored by: Tame your development challenges with Apache's Geronimo App Server. Download it for free - -and be entered to win a 42" plasma tv or your very own Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php _______________________________________________ Spuc-users mailing list Spu...@li... https://lists.sourceforge.net/lists/listinfo/spuc-users |
|
From: Robert M. <rwm...@co...> - 2005-11-10 19:52:46
|
In gaussian_filter.cpp: ts = s*t0; should be ts = s*t0*dt; ????? Bob -- Laziness is the number one inspiration for ingenuity. Guilty as charged! |
|
From: Tony K. <tk...@pa...> - 2005-11-02 18:17:20
|
This list is for SPUC users only, the person who sent this has been unsubscribed. I also just wanted to give an update on SPUC. The latest version compiles on GCC 4.0, and should also work on some older versions of GCC (such as 3.4). I've also compiled it under Visual Studio 2005 Beta with only a couple of modifications At this point most changes to SPUC will be to fix compilation issues and bugs. I would welcome feedback on anything that needs to be fixed or added. Thanks Drewster D <vo...@ho...> wrote: In the event anyone is interested or know of someone that is, please feel free to email or pass along as required: ... |
|
From: Drewster D <vo...@ho...> - 2005-11-02 17:06:47
|
<html><div style='background-color:'><DIV class=RTE>In the event anyone is interested or know of someone that is, please feel free to email or pass along as required:</DIV> <DIV class=RTE> </DIV> <DIV class=RTE>Or contact me at 408-850-1157 </DIV> <DIV class=RTE>Andrew Sanger</DIV> <DIV class=RTE><A href="mailto:an...@ta...">an...@ta...</A></DIV> <DIV class=RTE> </DIV> <DIV class=RTE><FONT face="Lucida Sans Unicode" color=#000080 size=2> </FONT> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-SIZE: 14pt"><FONT size=2>HW/SW Architect: The Bay Area, CA.</FONT></SPAN></B></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt"><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-SIZE: 14pt"><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p> </o:p></SPAN></B></P> <P class=MsoNormal style="MARGIN: 0in 0in 0pt">Experience in the development of state-of-the-art wireless communications chips/systems is required. Proven track record in the design of complex DSP algorithms geared towards high-speed wireless modems, and knowledge of C, SystemC, Matlab, Verilog/VHDL, and their respective tools is a must. Candidate should demonstrate knowledge of DSP HW/SW architecture co-design using CPU or DSP based architectures. <BR> <BR>Description <BR> The candidate will be part of a multidisciplinary team developing DSP-based algorithms, architectures, and implementation of wireless communications systems. The candidate will be responsible for modeling designs, developing optimal micro-architectures, and their implementation using HDL language. The candidate must have at least 10 years of experience in this field. An MSEE or PhD EE is required.</P></DIV></div></html> |
|
From: <lal...@ya...> - 2005-07-29 13:14:53
|
Hello Tony:
I'm a university student in Taiwan. I want to use the viterbi class to decode a FEC 1/2 coded file. But the decoded file via the viterbi class didn't work. Could you
tell me more about the viterbi class you did.
Please contact me at lal...@ya...
Regards,
Kevin Ku
啁拙閮嚗鞎餌雯頝舫閰曹遙雿嚗擐砌銝 |
|
From: Sander <sa...@ee...> - 2004-10-10 14:40:16
|
Dear friends,
I tried to compile the qpsk example with C++ Net
but have got the error
------ Rebuild All started: Project: qpsk, Configuration: Debug Win32 ------
Deleting intermediate files and output files for project 'qpsk',
configuration 'Debug|Win32'.
Compiling...
vco.cpp
sim_qpsk.cpp
raised_cosine.cpp
quad_data.cpp
qpsk_main.cpp
C:\Program Files\Microsoft Visual Studio .NET\Vc7\include\streambuf(37)
: error C2872: 'std' : ambiguous symbol
could be 'std'
or 'SPUC::std'
C:\Program Files\Microsoft Visual Studio
.NET\Vc7\include\streambuf(36) : while compiling class-template member
function 'std::basic_streambuf<_Elem,_Traits>::~basic_streambuf(void)'
with
[
_Elem=char,
_Traits=std::char_traits<char>
]
C:\Program Files\Microsoft Visual Studio
.NET\Vc7\include\istream(991) : see reference to class template
instantiation 'std::basic_streambuf<_Elem,_Traits>' being compiled
with
[
_Elem=char,
_Traits=std::char_traits<char>
]
qpsk_ber_test.cpp
qpsk.cpp
noise.cpp
nco.cpp
max_pn.cpp
fir.cpp
carrier_nco.cpp
Generating Code...
Build log was saved at
"file://e:\Sander_From_20March\Modem\A_ModemSimulation_C\spuc\sources\spac_test\spux\qpsk\Debug\BuildLog.htm"
qpsk - 1 error(s), 0 warning(s)
---------------------- Done ----------------------
Rebuild All: 0 succeeded, 1 failed, 0 skipped
would You like help me run it !?!
Regards
Sander
spu...@li... wrote:
>Send Spuc-users mailing list submissions to
> spu...@li...
>
>To subscribe or unsubscribe via the World Wide Web, visit
> https://lists.sourceforge.net/lists/listinfo/spuc-users
>or, via email, send a message with subject or body 'help' to
> spu...@li...
>
>You can reach the person managing the list at
> spu...@li...
>
>When replying, please edit your Subject line so it is more specific
>than "Re: Contents of Spuc-users digest..."
>
>
>Today's Topics:
>
> 1. New to spuc (Ken Hawkins)
>
>--__--__--
>
>Message: 1
>To: spu...@li...
>From: Ken Hawkins <ros...@ma...>
>Date: Fri, 8 Oct 2004 14:18:50 -0700
>Subject: [Spuc-users] New to spuc
>
>I am looking at C++ based DSP algorithms and stumbled across this. a
>couple of quick questions.
>
>how and what to build?
>
>looks like a windows based library and set of tools, is that true?
>
>thanks,
>ken;
>
>
>
>
>--__--__--
>
>_______________________________________________
>Spuc-users mailing list
>Spu...@li...
>https://lists.sourceforge.net/lists/listinfo/spuc-users
>
>
>End of Spuc-users Digest
>
>
>
|
|
From: Sander <sa...@ee...> - 2004-10-10 09:18:40
|
Hi, 1. I new too. 2. It looks very good. 3. best in Universe about modem simulation but 5. how to get into? 6. The help is difficult to use I also hope on help somebody with spuc experience Regards Sander spu...@li... wrote: >Send Spuc-users mailing list submissions to > spu...@li... > >To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/spuc-users >or, via email, send a message with subject or body 'help' to > spu...@li... > >You can reach the person managing the list at > spu...@li... > >When replying, please edit your Subject line so it is more specific >than "Re: Contents of Spuc-users digest..." > > >Today's Topics: > > 1. New to spuc (Ken Hawkins) > >--__--__-- > >Message: 1 >To: spu...@li... >From: Ken Hawkins <ros...@ma...> >Date: Fri, 8 Oct 2004 14:18:50 -0700 >Subject: [Spuc-users] New to spuc > >I am looking at C++ based DSP algorithms and stumbled across this. a >couple of quick questions. > >how and what to build? > >looks like a windows based library and set of tools, is that true? > >thanks, >ken; > > > > >--__--__-- > >_______________________________________________ >Spuc-users mailing list >Spu...@li... >https://lists.sourceforge.net/lists/listinfo/spuc-users > > >End of Spuc-users Digest > > > |