Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ak501
  • Order by date
  1. ak501

    MATLAB-SQL-JDBC

    Hello All, I was able to connect to SQL from MATLAB using JDBC connection as follows java.lang.Class.forName('sun.jdbc.odbc.JdbcOdbcDriver'); url = 'jdbc:odbc:mydb'; url = java.lang.String(url); con = java.sql.DriverManager.getConnection(url,'guest','guest'); statement=con.createStatement()...
  2. ak501

    problem with updation in datetick

    I have probelm using dateticks I plot 399 values of y,z against 399 time values in x It starts well by begining at first value of x, but as it goes on plotting the the plot gets compressed due to the dates. And I am not able to handle these dates with datetick function. I wanted to plot only...
  3. ak501

    Pause a process

    Hello SoundNSW It works thx for your help.
  4. ak501

    Pause a process

    Hello friends, I have a problem pausing a process from GUI interface in MATLAB. So here are the details of my problem I was trying to plot XY-graph. So for that i made three buttons in the GUI say Plots Pause ON Pause OFF when I press <Plots button> it plots from 1:1000 on x-axis and...
Back
Top