Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by testing test

  1. T

    Saving Text Box Input from MATLAB GUI to a variable in workspace

    Hi, I am new to MATLAB GUI and have no idea of how to use it. Here is the image screenshot of my GUI. What I want is that whatever is written in the text box next to secret message (in string format), it would be saved to a variable sec_info (string type) in workspace whenever the Send...
  2. T

    How to calculate 2's compelement in MATLAB?

    These two lines worked fine: a=-127; a=256+a; Thank you.
  3. T

    How to calculate 2's compelement in MATLAB?

    Well, what I actually want is to convert -127 to 129 -126 to 130 -125 to 131 And so on... @andre_teprom: Your provided equation is not doing this. @KerimF: Yes man it worked. Thanks!
  4. T

    How to calculate 2's compelement in MATLAB?

    Hi, I want to find the 2's complement of -127 in MATLAB for 8 bits. I want to find 2's complement of a. So, I multiply it by -1 and takes its dec2bin: a=-127 a=-1*a; b=dec2bin(a,8); Now b = '01111111' I want to invert all the bits of b and add 1 to it. How can I do it? Thank you.
  5. T

    8 KB Data Sending Limit from one PC to other PC (Server/Client) through MATLAB/JAVA

    Hi, I am using a code which calls Java inside the .m MATLAB files. Both the .m files are working fine. But the problem is that if I send data greater than 8192 bytes (8 KB) from server to client, like 9000 bytes, the server will send all 9000 bytes to client but the client will pick first 8192...
  6. T

    [SOLVED] How to record wav file more than 5 seconds in MATLAB?

    Hi, I want to record a .wav file in MATLAB. I am able to record a 5 seconds file using: But I want to record longer sounds continuously for like 1-2 mins. Can you please suggest me something that could be done? Thank you. ---------- Post added at 18:14 ---------- Previous post was at 17:06...
  7. T

    Error when transmitting file through TCP

    Here is another scenario I am having now. I have started the receiver on one machine and then started the sender. The port number I used is 29250. When I select a file and send it to the receiver, a dialog box at the receiver pops up asking me to accept the incoming file. When I click Yes to...
  8. T

    Error when transmitting file through TCP

    Hi, I have attached the zip files for the sender side and the receiver side. I am running these projects in Visual Studio (Visual C#). The purpose is to send an audio file from the sender to a receiver. It is giving me some error when I run the project. The error message is also attached...
  9. T

    after download the bit generation file into fpga ???

    Yes, you need to use a hyperterminal software to read what's being received on the other side. Otherwise you will be viewing symbols like $#%! etc.
  10. T

    What is the meaning of this VHDL line?

    Hi, What is the meaning of this VHDL line? Thank you.
  11. T

    What is the difference between FPGA and DSP Kit?

    Hi, What is the difference between an FPGA like Spartan 3 or Vertex 4 and a DSP kit like TI C6713? Thank you.
  12. T

    How to converting .wav file to bits in MATLAB?

    Hi, I have a .wav file in my PC and I want to convert it to bits. I have tried the command: [x,fs,nbits]=wavread('test.wav'); This command gives me floating point signed numbers for each sample however I need bits. What should I do in case I need actual bits and not these signed numbers...
  13. T

    Error in Verilog - Calling Other Files in Same Project

    Hello, I am writing code for the main file of my project which makes use of other files within the same project. I am trying to call some files into my main project file with the following commands: Byte_Sub bs0(BS,Cipher_Text); Shift_Rows sr0(SR,BS); The...
  14. T

    How compression is performed over GSM?

    Hi, I want to know how compression for voice is achieved in GSM networks? Is it performed in time-domain or frequency-domain and if someone has documentation related to GSM compression? I am looking for that. Please help me in this regards. Thank you.
  15. T

    [SOLVED] Problem with Verilog Code - Running Indefinitely

    Here is the complete code: module Mix_Col(MC,SR); output [127:0]MC; input [127:0]SR; reg [127:0]MC; reg [7:0]tempSR[3:0][3:0]; reg [7:0]tempMC[3:0][3:0]; reg [1:0]Multiplier_Matrix[3:0][3:0]; reg [1:0]k,n,o,j,i; reg [7:0]Transformed_Value,Variable; reg...

Part and Inventory Search

Back
Top