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 Ashieboy

  1. A

    Matlab programming PID for GUI

    I was trying to make gui for PID and IMC tuning method. Is it easy to make change to the existing code that i find or to make a totally new one? The existing one only have IMC but cannot control the P, I and its D value.
  2. A

    Developing GUI using Matlab..

    If i want to create a GUI for an essential oil extraction process, 1. which process is the best to represent in the GUI? 2. what are the parameters that i should control? 3. what formula or algorithm are the best? FOPDT? PID?
  3. A

    Developing GUI using simulink

    is it possible to turn this block diagram to GUI?
  4. A

    RFID or IR sensor better?

    Yup its the same with lots of hotel out there. What im trying to do is to implement the thing to my faculty. The requirement of the project is, it has to have sensors and microcontroller. So, i was just trying to make a prototype in a box or something which show the function not the actual...
  5. A

    RFID or IR sensor better?

    Thank you for ur reply. If i want to use RFID do u know how to combine the circuit of lamp and aircond?? i only found how to use the rfid with 1 output. i was using the rfid with arduino. So far i can only make it to operate 1 output at a time but not both. Does any1 have a suggestion? (fyi: the...
  6. A

    RFID or IR sensor better?

    I was trying to do a small project which is to apply the hotel system key card where it open the door of a room and after enter the room we put it at a certain place where it acts as a switch for the lamp and aircond. So, i was wondering which one is better either using RFID or IR sensor?
  7. A

    Developing GUI using simulink

    Does any1 know a good website or good book that i can use as reference to develop GUI using simulink? I just want to make an ON/OFF function to get the gain thats all. Thank you.
  8. A

    How to change to OOP style??

    #include<iostream> #include<cmath> using namespace std; class Bisection{private:float f, x; float fx1,x1,x2,x3; int count, iter; public :float func(float x) {float fx1; fx1 = pow(x,3)...
  9. A

    How to change to OOP style??

    #include<iostream> #include<cmath> using namespace std; class Bisection{private:float f, float x; public :float fx1,x1,x2,x3; int count, int iter}; getter{ cout <<"Enter x1 = "...
  10. A

    How to change to OOP style??

    #include<iostream> #include<cmath> using namespace std; float f (float x) { float fx1; fx1 = pow(x,3) - pow(x,2) + (1.4*x) + 7.8; return (fx1); } main() { float x1,x2,x3; int count = 0; int iter; cout <<"Enter x1 = "; cin >> x1; cout <<"Enter x2 = "...
  11. A

    [SOLVED] Why the answer for the sum and the average wrong??

    #include <iostream> #include <fstream> using namespace std; int main(){ string line; float x,sum=0,average,b; int y=0,i,j,k=0; float n1[1000]; float n2[1000]; ifstream myfile("sensor.txt"); if(myfile.is_open()) { getline(myfile,line); while(myfile.good()) { myfile>>x...
  12. A

    [SOLVED] How do i count the duplicate number for the last one... (codeblock)

    oh what i mean by "bool" is the command bool matching = false; for (int j=0; (j<i) && (matching == false); j++) if (x[i] == x[j]) matching = true; if (!matching) since i only find this method on the internet so i just modify it just curious if there is more simple method thats all :thinker:
  13. A

    [SOLVED] How do i count the duplicate number for the last one... (codeblock)

    is there any other way to count duplicate without using "bool"? and how can i only make the cout for duplicate more than 1?
  14. A

    [SOLVED] How do i count the duplicate number for the last one... (codeblock)

    oh, thank you horace1 and andre no wonder 20 r not there I forgot to start from 0. lol.
  15. A

    [SOLVED] How do i count the duplicate number for the last one... (codeblock)

    #include <iostream> using namespace std; int x[] = {20, 23, 45, 11, 62, 34, 23, 47, 11, 20, 15, 17, 36, 29, 30, 23, 14, 56, 20, 11, 62, 11}; int main(){ int t=22,count; cout<<"Total number in the array is " <<t<<endl; int highest, smallest; highest=x[0]; for (count=1; count<t; count++){ if...

Part and Inventory Search

Back
Top