登录
首页 » matlab » syntraces

syntraces

于 2009-09-07 发布 文件大小:44KB
0 173
下载积分: 1 下载次数: 277

代码说明:

  合成地震记录程序,主要用于石油勘探中的正演模拟(this procedue is user for syn seismic data, mostly use for forword modeling in oil exploration)

文件列表:

syntraces
.........\comb.m
.........\Contents.m
.........\einar.m
.........\impulse.m
.........\ormsby.m
.........\qmatrix.m
.........\reflec.m
.........\ricker.m
.........\rnoise.m
.........\seismo.m
.........\seismogram.m
.........\spike.m
.........\sweep.m
.........\synseis_press.m
.........\synseis_w.m
.........\theogram.m
.........\theosimple.m
.........\theo_mult_w.m
.........\tntamp.m
.........\waterbtm.m
.........\wavedyn.m
.........\wavemin.m
.........\wavenorm.m
.........\wavevib.m
.........\wavez.m
.........\zoepplot.m
.........\zoepplt.m
.........\zoeppritz.m

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • entryclient
    用QT编写的登录界面,能够与服务端连接后判断密码对错后进行登录。(Login interface written in QT, can be connected to the server to determine the password after the wrong login.)
    2018-07-12 20:33:08下载
    积分:1
  • 机器人PID控制
    说明:  通过电脑与机器人进行人机交互,给出相应的控制指令(比如停止、前进等),伺服驱动的PID对伺服电机进行初步控制,伺服电机的测量信号反馈给开放式多轴运动控制器,然后该控制器的PID会对系统进行再次细调,使伺服电机运行得更平稳,从而完成控制人员对轮式机器人的各种操作指令。(Through human-machine interaction between computer and robot, corresponding control instructions (such as stop, advance, etc.) are given. Servo-driven PID controls the servo motor initially, and the measurement signal of the servo motor is fed back to the open multi-axis motion controller. Then the PID of the controller will fine-tune the system again, making the servo motor run more smoothly, thus completing the control personnel. Various operating instructions for wheeled robots.)
    2019-05-13 09:21:13下载
    积分:1
  • go-back-n实现rdt3 -go-back-n rdt3
    2022-01-31 21:49:13下载
    积分:1
  • c# 扫描IP Http Header
    c# 扫描IP Http Headerusing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Threading;using System.IO;namespace HScan{ public partial class Form1 : Form { int _currentThreads = 0; int _maxThreads = 100; Thread main = null; Thread mt = null; List threads = new List(); public Form1() { InitializeComponent(); Control.CheckForIllegalCrossThreadCalls = false; } private void btnStart_Click(object sender, EventArgs e) { btnStart.Enabled = false; if (txtStart.Text.Trim() == "") { MessageBox.Show("起始IP不能为空."); return; } if (txtEnd.Text.Trim() == "") { MessageBox.Show("结束IP不能为空."); return; } int ts = Convert.ToInt32(txtThreads.Text); _maxThreads = ts; string startIp = txtStart.Text; string endIp = txtEnd.Text; TParameter tp=new TParameter(); tp.StartIp=startIp; tp.EndIp=endIp; tp.ThreadCount=ts; main = new Thread(new ParameterizedThreadStart(StartMe)); main.Start(tp); } protected void ThreadManage() { Thread c=null; while (true) { System.Object lockThis = new System.Object(); lock (lockThis) { for (int i = 0; i < threads.Count; i ) { if (threads[i] != null && !threads[i].IsAlive) { c = threads[i]; break; } } if (c != null) { threads.Remove(c); } } } } protected void StartMe(object ob) { mt = new Thread(new ThreadStart(ThreadManage)); mt.Start(); TParameter p = ob as TParameter; string curIp = p.StartIp; while (true) { for (int i = 0; i < _maxThreads; i ) { if (curIp != "") { if (_currentThreads >= _maxThreads) break; System.Object lockThis = new System.Object(); lock (lockThis) { _currentThreads ; if (_currentThreads > _maxThreads) _currentThreads = _maxThreads; string tip = curIp; Thread t = new Thread(new ParameterizedThreadStart(Run)); t.Start(tip); threads.Add(t); curIp = IPUtility.getLastIp(curIp, p.EndIp, 1); } } else { break; } } } } protected void Run(object ob) { string ip = ob.ToString(); SocketGetHead h = new SocketGetHead(); string ret = h.GetHtml(ip, 80); if (ret.IndexOf("DVRDVS-Webs") > 0) { ListViewItem item = new ListViewItem(); item.SubItems[0].Text = (listView1.Items.Count 1).ToString(); ListViewItem.ListViewSubItem lvSubItem = new ListViewItem.ListViewSubItem(); lvSubItem.Text = ip; item.SubItems.Add(lvSubItem); lvSubItem = new ListViewItem.ListViewSubItem(); lvSubItem.Text = "DVRDVS-Webs"; item.SubItems.Add(lvSubItem); listView1.Items.Add(item); } System.Object lockThis = new System.Object(); lock(lockThis) { lblCurIp.Text = ip; _currentThreads--; if (_currentThreads < 0) _currentThreads = 0; } } private void tsmCopy_Click(object sender, EventArgs e) { if (listView1.SelectedItems.Count > 0) { string ip = listView1.SelectedItems[0].SubItems[1].Text; Clipboard.SetText(ip); } } private void tsmExport_Click(object sender, EventArgs e) { StreamWriter writer = new StreamWriter(AppDomain.CurrentDomain.BaseDirectory "\export.txt",true); foreach (ListViewItem item in listView1.Items) { string ip=item.SubItems[1].Text; writer.WriteLine(ip); writer.Flush(); } writer.Flush(); writer.Close(); MessageBox.Show("导出成功!"); } private void Form1_FormClosing(object sender, FormClosingEventArgs e) { try { if (mt != null) { mt.Interrupt(); mt.Abort(); } foreach (Thread t in threads) { t.Interrupt(); t.Abort(); } if (main != null) { main.Interrupt(); main.Abort(); } } catch { } Thread.Sleep(5000); } private void btnStop_Click(object sender, EventArgs e) { try { if (mt != null) { mt.Interrupt(); mt.Abort(); } foreach (Thread t in threads) { t.Interrupt(); t.Abort(); } if (main != null) { main.Interrupt(); main.Abort(); } } catch { } btnStart.Enabled = true; } }}
    2014-06-23下载
    积分:1
  • kalman
    说明:  扩展卡尔曼滤波,适用于多目标跟踪,里面还有一个子程序(Extended Kalman Filter)
    2019-09-19 15:34:44下载
    积分:1
  • zicm__nice
    一个不错的office 2003 界面类(A nice office 2003 interface class)
    2018-11-27 20:24:08下载
    积分:1
  • cal-diameter
    计算网络静态参数的直径c程序(其中的数据是具体的可换成其他的数据)。(computing network diameter of the static parameters c (which is specific data can be replaced by other data).)
    2007-01-02 14:49:19下载
    积分:1
  • RBTS_F4序贯
    计算RBTS——F4网络的序贯可靠性指标(Computing sequential reliability index of RBTS -- F4 network)
    2021-03-24 15:19:15下载
    积分:1
  • Calculadora em 套接字
    简单分布式的计算器插座。 四位研究人员想要执行一系列的计算,他们的研究。然而,他们的系统有只具体计算速度非常快的处理器。例如,W 的计算机快速执行加法,但较慢,当它来到乘法 首先,我们运行我们 4 的服务器 (server_add.c、 server_sub.c、 server_mul.c 和 server_div.c): 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报 打分 发表评论 暂无评论
    2022-01-25 14:21:09下载
    积分:1
  • Protocol6
    计算机网络选择重传协议,效率达到90 以上,北邮计科计算机网络课程作业(Select the computer network retransmission agreement, more than 90 efficiency, BUPT Jike computer network course work)
    2014-03-31 20:55:07下载
    积分:1
  • 696518资源总数
  • 106155会员总数
  • 8今日下载