-
连续体和结构的非线性有限元
说明: finite element theory
- 2020-03-29 10:47:02下载
- 积分:1
-
KinectwithMatlab
The release of the Kinect for Windows sensor and software development kit (SDK) for commercial applications opens up the limitless possibilities offered by Kinect technology. Together, the hardware and software offer a superior development platform for Windows and a higher quality, better performing experience for end users.
- 2012-04-22 12:43:43下载
- 积分:1
-
Computational-Mechanics01
计算力学基础,中国科技大学精品教材,王秀喜,吴恒安编著(The basis of Computational Mechanics, University of Science and Technology of China, boutique textbook series)
- 2012-11-08 10:17:08下载
- 积分:1
-
TOPWAY-UC1698-AppNote-V0.2
UC1698U驱动160*160LCD中文应用及例程(UC1698U driver 160* 160LCD Chinese applications and routines)
- 2013-05-23 09:25:56下载
- 积分:1
-
PointAnimation
Write an animation of the Point class.
Requirements: Bezier curve point as the target attribute.
- 2017-12-15 20:05:35下载
- 积分:1
-
MatlabOED3
说明: 掌握用Matlab软件求解微分方程模型的解析解和数值解的方法(Master the use of Matlab software for solving differential equations model of analytical solution and numerical solution methods)
- 2008-11-23 14:24:56下载
- 积分:1
-
RX23T_MRSSK_SPM_LESS_FOC_CSP_RV101
PMSM 180°正弦波无位置传感器FOC程序(PMSM 180 sensorless FOC program.)
- 2021-04-27 13:08:45下载
- 积分:1
-
STM32-USB-Host-Device-Lib-V21 new
stm32-f105 USB库,用于STM32-F105 ARM的USB开发。(This is stm32-f105 USB.lib.)
- 2018-04-18 13:19:36下载
- 积分:1
-
ProgectTemp_lpc177x_8x
LPC1788工程模板,SmartCortex M3-1788(LPC1788 Progect temp,SmartCortex M3-1788)
- 2016-02-28 15:09:07下载
- 积分:1
-
C# WPF 功能打印的示例
C# WPF 功能打印的示例,加载内容后,可在本程序中直接打印出XAML文档。
private void button2_Click(object sender, RoutedEventArgs e)
{//打印文件
PrintDialog MyDialog = new PrintDialog();
if ((MyDialog.ShowDialog() == true))
{
MyDialog.PrintVisual(this.richTextBox1 as Visual, "我的XAML打印文档");
}
}
private void button3_Click(object sender, RoutedEventArgs e)
{//保存文件
string MyFileName = "MyFile.XAML";
TextRange MyTextRange;
System.IO.FileStream MyStream;
MyTextRange = new TextRange(this.richTextBox1.Document.ContentStart, this.richTextBox1.Document.ContentEnd);
MyStream = new System.IO.FileStream(MyFileName, System.IO.FileMode.Create);
MyTextRange.Save(MyStream, DataFormats.XamlPackage);
MyStream.Close();
}
- 2022-01-23 10:57:00下载
- 积分:1