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 devilwar

  1. D

    how to design 8 to 256 decoder..

    There are various ways to design a 8-to-256 decoder. 1. Using 3-to-8 decoder. 2. Using 4-to-16 decoder. and many. many logic can be applied to this problem. You can make a 3-to-8 decoder and instantiate them to make a 8-to-256 decoder.A very simple logic for 3-to-8 decoder is given below...
  2. D

    Proteus Library to support Xilinx or Altera FPGAs

    Hi.... Is there any proteus Library to support Xilinx or Altera FPGA. I have a proteus ise v7. There are some FPGA and Plds, however I didnt get the ones I want to use..... Thnx buddies... :smile:
  3. D

    [SOLVED] MATLAB Simulink image and video acquisition ?

    If you are memory overload is creating a problem for you, one way I guess is to increase your virtual memory substantially. This increases the workspace and hereby more number of variables can be worked upon. However you can also look for memory fragmentation under matlab. This might be of help too.
  4. D

    [SOLVED] MATLAB Simulink image and video acquisition ?

    Function 'clear' and 'clearvars' clears the workspace. clear all; - clears the entire workspace clear var1,var2; - clears only var1 and var2 variable from the workspace
  5. D

    [SOLVED] MATLAB Simulink image and video acquisition ?

    If you need to capture and image from a video source like a webcam or so, the code is mentioned above.
  6. D

    [SOLVED] MATLAB Simulink image and video acquisition ?

    I am sorry I didn't get your question?...."Snapshot of an image?" Could you be more elaborate....
  7. D

    meaning of matlabcommand

    Re: meaning of matlab command What is costMat?...is it an array or only a variable?..... Considering costMat a variable, costMat~=costmat will always be untrue hence 0. Thus costMat(0)=0 which has no significance in matlab as the indexing of matlab variables start from 1. Thus costMat will...
  8. D

    DSK6713 with MATLAB on Windows 7

    Absolutely......
  9. D

    DSK6713 with MATLAB on Windows 7

    Whatever you have heard is not true. Matlab has support for CCS v4. However the support is not as strong as link for CCS 3.3. Please find the link below. MathWorks India - Does Embedded IDE Link 4.2 (R2010b) support Texas Instruments Code Composer Studio 4.0? - MATLAB & Simulink **broken link...
  10. D

    DSK6713 with MATLAB on Windows 7

    Hi Nikolov, I had been breaking my head since past 4-5 months going through the same problem. Actually CCS 3.3 does not recognize Win7. Hence its not possible to work on Win7 with CCS 3.3. Even TI advises to move to CCS v4. For installation please go through the manual below. It helped me a lot.
  11. D

    How to edit a Program in Matlab??

    Hey I see you have missed a ")" in the end of the line. It should have been as follows disp(['Factorial of 'num2str(num(p))' is :']);
  12. D

    How to edit a Program in Matlab??

    I have checked the program its working fine in my PC. I would like to know the exact error thats poping in command window. I guess I might help you then.
  13. D

    Xilinx Virtex 5 Board Manual

    As I have mentioned, I am using a FPGA FX30T and FPGA FX70 of Xilinx make. Regarding the board, I have a Xilinx Virtex 5 Evaluation Kit from Avnet and Virtex-5 FXT FPGA ML507 Evaluation Platform by Xilinx. 1.**broken link removed** 2. Virtex-5 FXT FPGA ML507 Evaluation Platform
  14. D

    How to edit a Program in Matlab??

    you can use command 'input' for this. close all; clear all; clc; for p=1:4 num(p)=input('Enter a number: '); fact = factor(num(p)); disp(['Factorial of ' num2str(num(p)) ' is: ']); disp(fact); end This program displays factorial of a number which user inputs.
  15. D

    Xilinx Virtex 5 Board Manual

    Oh sorry I forgot to mention i am working with Xilinx Virtex5 Fx30T and FX70....

Part and Inventory Search

Back
Top