由买买提看人间百态

topics

全部话题 - 话题: simulink
1 2 3 4 5 6 7 8 下页 末页 (共8页)
x****e
发帖数: 3
1
【 以下文字转载自 EE 讨论区,原文如下 】
发信人: XinZhe (战士), 信区: EE
标 题: [求助]如何加快S函数在Simulink中的运行速度
发信站: Unknown Space - 未名空间 (Tue Jan 25 16:50:07 2005) WWW-POST
我正在Simlink中调试运行一个S函数,基本上就是调用已有的很大的一个多线程仿真程序
ASM(标准C写的,MSVC 6.0编译环境)。如果假设ASM作为可执行文件(e.g.
ASM.exe)在PC(P4 2.8GHz/Windows2000, Matlab 6.5 & 7.0)上运行,所需要的时间为1秒
的话,那么编译成S-函数(e.g. ASM.dll)在Simulink中调用的话,就需要运行20秒的时间

我已经尽可能的对程序进行优化了(如使用Release Build instead of Debug Build,并
尽可能地参考Simulink手册上对於Simulink仿真优化设置的说明),但几乎一点效果都没
有。下面是我的S函数的源程序,请各位给支支招:怎么样才能加快在Simulink中的
g******u
发帖数: 3060
2
过去曾经申请过一个控制的专利。写了一点数学,建了一个simulink仿真一下就完了。
现在出于种种原因,想做个电路实现一下,这样就可以脱开电脑,直接在车里或者透平
上玩玩。
这个东西有点复杂,原来的仿真是simulink结合matlab程序,所以好象不是集成的
simulink-to-C compiler可以做的。
我自己可以搭一点电路。希望花一点钱买块板子,直接从matlab/simulink里面把所有
东西都转到一个DSP/FPGA上去,可以省很多事(microcontroller也可以)。因为原来
东西比较乱,重新编程难度很大。输入输出不是太多,主要是当中的处理麻烦。
钱倒不是问题,因为其他很多sensor,power device之类势必也不便宜,以前学校老板
本来打算花很多钱把这件事情外包,如果我能自己试试估计他不反对。
不知道哪位有相关经验,不胜感激。
G******y
发帖数: 86
3
来自主题: EE版 - 请教simulink问题
想在simulink里产生一个digital signal generator,然后数据从并口输出,matlab里
我已经有data acquisition toolbox,从matlab命令行可以通过putvalue向并口输出数
据,但是不知道怎么从simulink里直接输出到并口?
另一个问题是怎么在simulink里设置time step,就是我想要一个100kHz的digital
signal,怎么设定使得并口输出的信号确实是100kHz的?
谢谢!
p*s
发帖数: 30
4
I am writing an M-file based s-function in Simulink, I need multi-outputs.
The documentation is poor, I think, mabye I just don't have the patience to
go through all the corners to find my answer.
anyway, I figured it out by try and error. I list my solution here, hope
it helps.
Simulink provides a standard template, which is too complicated and not very
well explained. For my application, I just use the 'timestwo' example as the
template.
Following those steps,
Inside the s-function
(1) go to t
M******H
发帖数: 249
5
我用simulink 建了一个莫,现在想每1/60 s 采样生成个 .mat 文件做数据库,这个文
件需要提前定义吗?还有我想将simulink 所建的模作为图形copy到word 文件,用简单
的copy 不成功,该怎么操作?
多谢了。
b*****e
发帖数: 1193
6
matlab/simulink
1.what's the difference bettween Matlab language and Embedded Matlab
language?
2.Do u know RTW embedded coder? what's the function for RTW embedded code in
matlab? if I have a new 64bit microprocessor architecture, how to support
this new mcu in RTW embedded coder?
3. What is fixed point and its usage ?Tell me the steps in converting the
fixed point model in Matlab/Simulink?
4.I have a matlab simulation running very slow.Tell me how to speed up the
execution of my simulation
不知道你
j******m
发帖数: 26
7
simulink 模拟 pll,
简单应用,熟悉pll与simulink的朋友应该可以半天搞定。
酬劳丰厚,有意请联系;
g****[email protected],非msn,请发Email联系。
在线等。
n********e
发帖数: 1789
8
【 以下文字转载自 EE 讨论区 】
发信人: nineoneone (网虫), 信区: EE
标 题: 请教一个Simulink仿真中暂停改变参数的问题
发信站: BBS 未名空间站 (Sat Nov 8 16:33:18 2008), 转信
我有个mdl文件,从workspace中读取参数,然后运行。
我是想先运行到比如10s,暂停simulink,改变一些参数,然后继续运行到20s,
x = 0.00;
Tstop1 = 0.0;
Tstop2 = 10.0;
sys='test';
sim(sys,[Tstop1 Tstop2])
x = 0.01;
Tstop1 = Tstop2;
Tstop2 = 20;
sim(sys,[Tstop1 Tstop2])
这样对不对?主要是scope里面显示的不是从0~20s的。而是从10s到20s的,前面的被覆
盖掉了。
大家有啥办法?谢谢
n********e
发帖数: 1789
9
【 以下文字转载自 EE 讨论区 】
发信人: nineoneone (网虫), 信区: EE
标 题: 请教一个Simulink仿真中暂停改变参数的问题
发信站: BBS 未名空间站 (Sat Nov 8 16:33:18 2008), 转信
我有个mdl文件,从workspace中读取参数,然后运行。
我是想先运行到比如10s,暂停simulink,改变一些参数,然后继续运行到20s,
x = 0.00;
Tstop1 = 0.0;
Tstop2 = 10.0;
sys='test';
sim(sys,[Tstop1 Tstop2])
x = 0.01;
Tstop1 = Tstop2;
Tstop2 = 20;
sim(sys,[Tstop1 Tstop2])
这样对不对?主要是scope里面显示的不是从0~20s的。而是从10s到20s的,前面的被覆
盖掉了。
大家有啥办法?谢谢
w*****f
发帖数: 61
10
来自主题: ME版 - Matlab Simulink 一问 (转载)
【 以下文字转载自 Engineering 讨论区 】
发信人: websurf (天天冲浪), 信区: Engineering
标 题: Matlab Simulink 一问
发信站: BBS 未名空间站 (Thu Oct 27 23:09:47 2005), 站内
发信人: websurf (天天冲浪), 信区: EE
标 题: Matlab Simulink 一问
发信站: BBS 未名空间站 (Thu Oct 27 20:25:23 2005)
xdjm们,我花了一下午也没搞出这个看似巨简单的问题。 考,真没有成就感。。。。
如果我要改变pulse input的pulse width in real time, 如何实现?
谢谢了
d*******d
发帖数: 3382
11
来自主题: EE版 - 怎么能搞到FREE的SIMULINK?
most matlab CD includes simulink, of course, dao ban...
u****y
发帖数: 30
12
来自主题: EE版 - 怎么能搞到FREE的SIMULINK?
装Matlab,一般它都带Simulink
a****z
发帖数: 3
13
来自主题: EE版 - 求教关于simulink
小弟最近刚开始接触使用simulink,主要用于通信系统的仿真,有什么好的书籍或者资
料推荐一下吧,多谢多谢:)
k**f
发帖数: 372
14
来自主题: EE版 - 求教关于simulink

Simulink's documents are very good. Follow the user guide to start with. For
third party books, check out
http://www.mathworks.com/support/books
a****l
发帖数: 8211
15
主要是simulink/statediagram的建模,matlab的基本内容也要有,需要是比较简单能
在电话上说的,一下子实在想不出什么。这里的高手能不能贡献几道题目?谢谢!
b*****e
发帖数: 1193
16
Stateflow,我帮你出几道
1. In stateflow codegen, Can we use Machine parented events? why?
2. What's the weakness to use Exported graphical functions in stateflow?
3. What type of code structure will generate from "Local event broadcast to
ancestor states"?
4. what is the stateflow default simulink I/O datatype?
n********e
发帖数: 1789
17
我有个mdl文件,从workspace中读取参数,然后运行。
我是想先运行到比如10s,暂停simulink,改变一些参数,然后继续运行到20s,
x = 0.00;
Tstop1 = 0.0;
Tstop2 = 10.0;
sys='test';
sim(sys,[Tstop1 Tstop2])
x = 0.01;
Tstop1 = Tstop2;
Tstop2 = 20;
sim(sys,[Tstop1 Tstop2])
这样对不对?主要是scope里面显示的不是从0~20s的。而是从10s到20s的,前面的被覆
盖掉了。
大家有啥办法?谢谢
n********e
发帖数: 1789
18
看得有些地方说用:
set_param('sys', 'SimulationCommand', 'start');
set_param('sys', 'SimulationCommand', 'pause');
set_param('sys', 'SimulationCommand', 'continue');
但是也要有条件才能让他pause,不知道怎么在simulink运行的时候提取时间。我用get
_param得到的时间是已经运行到stop time了,没法中间pause
哪位大侠知道?谢谢了
v*****z
发帖数: 13
19
我只用过ISE的, 他的schematic library貌似比较小。。。
我查了一下,貌似simulink to hdl coder可以生成filters modulators 的模块转换到
HDL code。
有没有人用过这个coder?? 他的library怎么样呢??
谢谢啦
g******u
发帖数: 3060
20
来自主题: EE版 - 请教一个Simulink的问题
simulink has a limit symbol, so when you integrate at zero you can get
saturated result.
l***g
发帖数: 1035
21
来自主题: EE版 - 请教一个Simulink的问题
it's not a simulink problem. it's an initial condition problem. set your
initial phi's d or q to non-zero.
w*****f
发帖数: 61
22
来自主题: Engineering版 - Matlab Simulink 一问
【 以下文字转载自 EE 讨论区 】
发信人: websurf (天天冲浪), 信区: EE
标 题: Matlab Simulink 一问
发信站: BBS 未名空间站 (Thu Oct 27 20:25:23 2005)
xdjm们,我花了一下午也没搞出这个看似巨简单的问题。 考,真没有成就感。。。。
如果我要改变pulse input的pulse width in real time, 如何实现?
谢谢了
o*****f
发帖数: 1
23
来自主题: Engineering版 - 怎样在simulink中循环使用变量
最近遇到一个问题,我用matlab写了一个函数,其中需要循环使用一些变量,就是下一个
时刻需要使用上一个时刻的变量。因为数据比较多,所以我不想用反馈的办法来作,有没
有什么办法可以把这些数存起来,在下个时刻使用?我尝试过用global变量,但是
simulink不支持。请问大家有什么高见,谢谢了!
b****r
发帖数: 6
24
来自主题: Engineering版 - 怎样在simulink中循环使用变量
在simulink里面用自定义的函数,可以使用全局变量


b******3
发帖数: 4385
25
来自主题: Military版 - 放弃阵地第一名校--东南大学
个人认为以大学的名义给一个软件公司正式带路不妥,没本领开发不要紧,商业公司自
己选择使用也不要紧,但在中国目前发展状态下,全校范围推广使用的后果是很严重的
。高校的定位在哪里,这玩意和word的性质不一样,表面上此事合情合理,实际可见校
领导的无知。短视。matlab如此高调网站宣传,可见是件可喜可贺的大事啊,
http://www.mathworks.com/company/newsroom/article89338.html?s_t
东南大学在中国高校中首个采用 MATLAB 和 Simulink 校级许可证
该新许可证增强学校的承诺,即通过全面共享高级教学和科研工具,培养学生创新精神
, 提升工程实践能力
北京 – 2014 年 2 月 25 日
MathWorks 今日宣布,中国东南大学 (SEU) 签署了一份协议,为全校所有师生提供
MATLAB、Simulink 以及其他 50 个 MathWorks 产品以作为教学和学术研究之用。东南
大学是中国大陆第一所采用校级许可证的大学。MathWorks 已为全球数百所院校提供了
该许可证。
东南大学在 2013 年度中国大学排名... 阅读全帖
h****y
发帖数: 14
26
Summary
Join us as we accelerate the pace of engineering and science. As a member of
the Simulink Core team, you will help us enhance the Simulink modeling
environment and expand its automatic code generation capabilities, and
maintain the competitive edges on our floating-point and fixed-point designs
. We are looking for an energetic software engineer who can make a
difference in the development of Simulink. http://www.mathworks.com/products/simulink/
Responsibilities
Passionately build Simul... 阅读全帖
g****t
发帖数: 31659
27
来自主题: Programming版 - 各位自动驾驶技术发烧友们
Simulink 不是建模和仿真。是上车的代码的一个环节。我以前干过。
Simulink只用自己公司写的,限定性很强的自定义的模块。
不用matlab自带的。然后产生c代码。然后c代码检查。
修改。
好几道工序。
关键是第一步。simulink 自己定义的库要做死。
不能有多余的flexibility. 本身simulink语言和编程环境还是很好的。


: 谢行家分享。您这里说的第三点,即关于Simulink,是只是用它来建模和
仿真得
到控制

: 算法,程序另外手写,还是用它的Code generation来生产production
code?

: Simulink转

g****t
发帖数: 31659
28
你这等于是说matlab/simulink自带的库函数,各种包,等等没多大价值.
主要价值是外壳.我的看法和你恰恰相反.

用matlab/simulink的优点在于测试的方便,而不是说simulink出来的程序稳定性能有任
何的提高;产品的鲁棒性来自于多年的积累和整个开发测试标定过程.随便拉个人写点
simulink也是达不到鲁棒性的要求的(这么说是因为最近刚好有个朋友抱怨同事写的
simulink根本就没有任何的鲁棒性).
再说了,matlab/simulink编的程序后来还是要变成C程序,然后客户在matlab外用自己的
编译环境把这些c程序变成可执行程序的.常常有某人发现程序不对,然后追根到发现是
转换出来的c程序不对,然后要手工修改c才能让程序变对.
r******n
发帖数: 12
29
My team is very actively look for candidates with solid C++/Compiler/static
program analysis skills sets.
I can be reached at
[email protected]
/* */
or call me at
5086473016
Thanks in advance.
Details can be found at this link:
http://www.mathworks.com/company/jobs/opportunities/c-software-
Job Summary
Our team is responsible for developing a brand-new cutting-edge verification
product, Simulink Code Inspector. We are looking for an experienced C++
developer with knowledge of program stat... 阅读全帖
a****l
发帖数: 8211
30
用matlab/simulink的优点在于测试的方便,而不是说simulink出来的程序稳定性能有任
何的提高;产品的鲁棒性来自于多年的积累和整个开发测试标定过程.随便拉个人写点
simulink也是达不到鲁棒性的要求的(这么说是因为最近刚好有个朋友抱怨同事写的
simulink根本就没有任何的鲁棒性).
再说了,matlab/simulink编的程序后来还是要变成C程序,然后客户在matlab外用自己的
编译环境把这些c程序变成可执行程序的.常常有某人发现程序不对,然后追根到发现是
转换出来的c程序不对,然后要手工修改c才能让程序变对.
h****y
发帖数: 14
31
Job Summary:
Join us as we accelerate the pace of engineering and science. As a member of
the Simulink Core team, you will help us enhance the Simulink modeling
environment and expand its automatic code generation capabilities, and
maintain the competitive edges on our floating-point and fixed-point designs
. We are looking for an energetic software engineer who can make a
difference in the development of Simulink.
Responsibilities:
Passionately build Simulink and perfect Model Based Design. Inn
r******n
发帖数: 12
32
I am currently actively looking for a candidate with C/C++ and compiler
background.
Please send your resume to me directly
j**[email protected]
Thanks!
We are looking for an experienced C++ developer with knowledge of program
static analysis or formal verification techniques. Our team is responsible
for developing a brand-new cutting-edge verification product, Simulink Code
Inspector. You will help us expanding the product coverage from Simulink and
Stateflow to MATLAB code. This position offers... 阅读全帖
r******n
发帖数: 12
33
My group now has two positions, 1 summer intern and 1 software engineering.
C++ is mandatory, must be solid, compiler/static program analysis is highly
desirable.
please contact me if you are interested.
[email protected]
/* */
Thanks!
Both share similar requirements as below:
Summary:
Our team is responsible for developing a brand-new cutting-edge verification
product, Simulink Code Inspector. We are looking for an experienced C++
developer with knowledge of program static analysis or fo... 阅读全帖
W***n
发帖数: 11530
34
来自主题: JobHunting版 - Aerospace Software Engineer at The MathWorks
Aerospace Software Engineer at The MathWorks, Inc.
Natick, MA
Report this job
About the Job
Job Summary
This position is located in our Natick, MA USA headquarters and requires U.S
. Citizenship.
You will work as part of a focused team to develop software tools for
analysis and Model-based design of aerospace vehicle systems. Combining your
knowledge of aerospace systems with software development skills, you will
build upon the current analysis and simulation capabilities and help
architect and ... 阅读全帖
h****y
发帖数: 14
35
Job Summary:
Join us as we accelerate the pace of engineering and science. As a member of
the Simulink Core team, you will help us enhance the Simulink modeling
environment and expand its automatic code generation capabilities, and
maintain the competitive edges on our floating-point and fixed-point designs
. We are looking for an energetic software engineer who can make a
difference in the development of Simulink.
Responsibilities:
Passionately build Simulink and perfect Model Based Design. Inn
h****y
发帖数: 14
36
Job Summary:
Join us as we accelerate the pace of engineering and science. As a member of
the Simulink Core team, you will help us enhance the Simulink modeling
environment and expand its automatic code generation capabilities, and
maintain the competitive edges on our floating-point and fixed-point designs
. We are looking for an energetic software engineer who can make a
difference in the development of Simulink.
Responsibilities:
Passionately build Simulink and perfect Model Based Design. Inn
o*o
发帖数: 4495
37
【 以下文字转载自 Engineering 讨论区 】
【 原文由 ooo 所发表 】
matlab中,有脉冲产生函数吗?
类似于saber中的schedule_event()函数,或dsp中的中断指令
就是在指定的仿真时间,该函数可以跳出程序,产生逻辑1->0或者0->1的输出
再跳会仿真程序中继续执行下一步。
如果simulink中可实现下面这点也可以:
现在matlab的所有simulink产生脉冲的模块,
脉冲周期,占空比等参数都是在simulink的仿真模块属性中设置
可是问题在于,实际中所要的脉冲所有参数都是在时刻在变化的
所以希望这样的脉冲产生模块的参数可以通过输入端输入。
有没有这样的参数可以通过输入方式来设置的simulink脉冲产生模块?
o*o
发帖数: 4495
38
【 以下文字转载自 EE 讨论区 】
【 原文由 ooo 所发表 】
matlab中,有脉冲产生函数吗?
类似于saber中的schedule_event()函数,或dsp中的中断指令
就是在指定的仿真时间,该函数可以跳出程序,产生逻辑1->0或者0->1的输出
再跳会仿真程序中继续执行下一步。
如果simulink中可实现下面这点也可以:
现在matlab的所有simulink产生脉冲的模块,
脉冲周期,占空比等参数都是在simulink的仿真模块属性中设置
可是问题在于,实际中所要的脉冲所有参数都是在时刻在变化的
所以希望这样的脉冲产生模块的参数可以通过输入端输入。
有没有这样的参数可以通过输入方式来设置的simulink脉冲产生模块?
c********e
发帖数: 4283
39
来自主题: Military版 - Matlab软件就是用java做的
Mathworks的产品两大系列么,Matlab和Simulink(包括SPC), 当初Matlab那边决定要
用Java写界面,Simulink那边坚决不同意所以自己用C++(Qt)来写。
不过接下来你们都看得到的,过几年所有的界面都是Javascript的了,包括desktop
install都是了。当然界面直接下面那个layer Simulink是肯定用C++的,Matlab那边应
该还是用Java.
两边的core都是C++,C++代码正真写得牛的还是Matlab那边,主要是所有面向对象的整
个语言体系都是Matlab那边开发支持的。

基本
h****y
发帖数: 14
40
Note: please delete if not appropriate to post open position here.
Job Summary:
Join us as we accelerate the pace of engineering and science. As a member of
the Simulink Core team, you will help us enhance the Simulink modeling
environment and expand its automatic code generation capabilities, and
maintain the competitive edges on our floating-point and fixed-point designs
. We are looking for an energetic software engineer who can make a
difference in the development of Simulink.
Responsibiliti
h**********d
发帖数: 4313
41
来自主题: JobHunting版 - MathWorks onsite面经
面的是software engineer /GUI
无算法,全是component design pattern和一点OO coding
电面1
simulink manager, 一堆hr问题, 技术问了一个, 不记得了,我用polymophism忽悠
过去了
然后给了一个word要求回答问题,全是讲讲自己的software engineer 的经验和经历
电面2
很nice的印度gg
讲research
假设simulink的GUI, 如何实现undo功能(答用commend pattern)
有没有用过html的canvas(没有。。)
大概讲一下JavaScript经历,简单解释AJAX
onsite
45分钟presentation, 介绍以前的projects
一共见7个人,最后一个recruiter
1. 电话会议一个在英国的人。。。
共享一个屏幕,他写了3个java class,问他的design有没有不好的地方,如何改进。
主要是有重复的try catch block,不好,不过我也说不出改进方法。。。他自己给了
答案,好像是搞了一个用generics的class作d... 阅读全帖
l*****i
发帖数: 302
42
Job Summary
The Simulink Data Management Quality Engineer is responsible for developing
test suites and conducting hands-on testing of the Simulink Data Management
infrastructure. As a member of the Development team, the candidate will
participate in the project from its early design stages and play a critical
role in driving it to final product release.
Responsibilities
Writing automated test suites using MATLAB, C/C++ to test new, mission
critical features related to Simulink and code generati... 阅读全帖
h****y
发帖数: 14
43
Simulink Software Engineer - Intern/Co-op
Start Option: Summer/Fall 2009
Weeks: 15-45
Summary
Join us as we accelerate the pace of engineering and science. As a member of
the Simulink Core team, you will help us enhance the Simulink modeling
environment and expand its automatic code generation capabilities, and
maintain the competitive edges on our floating-point and fixed-point designs
. We are looking for an energetic senior software developer who can make a
difference in the development o
r****c
发帖数: 1494
44
确实有自己的simulink库啊。哪个公司没有啊。
什么这个in the loop那个in the loop肯定也有,到最后也会有帮simulink coder擦屁
股的人。而且很多人也会去写硬件的abstraction什么的,但是最终的功能设计以及标
定都是不会写码的工程师写的。。。起码我们那几个部件是如此。
我不过是把话说得绝对了些而已。

simulink
w***g
发帖数: 5958
45
来自主题: Programming版 - 老魏的套路需要能scale才行
不能干。本质上是一样的东西。但是simulink只能做小规模的东西。
用户界面/编程界面决定了simulink处理全系统级别复杂程度的东西,
缺乏很多抽象工具。比如“进程”这个概念。传统OS里其实涵盖了
virtualization, isolation, scheduling等众多方面。做实时系统,
scheduling需要全改,但是isolation肯定还是要的。
然后需要一套系统来做编译时的验证,确保各种实时性的要求和
正确性测试。simulink从名字就能看出来,是偏重于开发和建模
用的。
其实我是说最好要画一个圈,然后让各类码工往里面钻。
s*****n
发帖数: 134
46
很有意思的装置艺术,构造相当简单,就是两个铰链起来的摆,铰链点上插支笔画就可
以了。
觉得墙上贴的那几张画都很漂亮,于是想用matlab来试试看能不能画出来。
单摆(傅科摆)http://en.wikipedia.org/wiki/Foucault_pendulum
的投影轨迹应该比较简单,这里已经有人给出了simulink 的code
http://www.mathworks.com/products/simulink/demos.html?
file=/products/demos/shipping/simulink/sldemo_foucault.html
双摆的模型,大家有兴趣试试吗?
l***g
发帖数: 1035
47
http://www.mathworks.com/products/simulink/demos.html?file=/products/demos/s
hipping/simulink/sldemo_househeat_script.html
if you have matlab and simulink, follow the instruction. otherwise click on
the figure in the link to open a java based illustration.
hth

familiar
n**********s
发帖数: 9
48
各位大侠,小弟现在需要用saber仿真一个基于MPPT算法的光伏电池充电器。按理说,
如果考虑到
MPPT,必须编写一段MPPT程序对DCDC变换器进行控制。如果用simulink仿真的话可以使
用S函数模
块来实现MPPT算法,可现在导师规定我必须用saber仿真,所以我想问一下saber中有没
有类似S函
数模块的功能?或者说在saber中进行这种需要自己编写一段程序的仿真,怎么解决?
PS:我知道saber和simulink可以co-simulation,但我还没用过,不知道可不可以在一
个电路图中
既有saber的模块,也可以插入simulink的S函数模块?
先谢谢各位大侠了!
l***g
发帖数: 1035
49
simulink rtw stateflow focus on workflow and so called model based design me
thodology. these are tools center to help throught process without changing
toolset. some other modeling sw start advertizing the same phylosophy now. s
imulink code generate is not perfect but the algorithm generation is better
than average software engineer in the control area. the weak point imho is o
n the embedded driver integration side. there are simply tooo many possibili
ties that they can only do a few simple ... 阅读全帖
s*****n
发帖数: 134
50
【 以下文字转载自 Computation 讨论区 】
发信人: seankun (kun), 信区: Computation
标 题: 想要这样的画,用matlab应该可以做的吧
发信站: BBS 未名空间站 (Sun Apr 24 22:50:43 2011, 美东)
很有意思的装置艺术,构造相当简单,就是两个铰链起来的摆,铰链点上插支笔画就可
以了。
觉得墙上贴的那几张画都很漂亮,于是想用matlab来试试看能不能画出来。
单摆(傅科摆)http://en.wikipedia.org/wiki/Foucault_pendulum
的投影轨迹应该比较简单,这里已经有人给出了simulink 的code
http://www.mathworks.com/products/simulink/demos.html?
file=/products/demos/shipping/simulink/sldemo_foucault.html
双摆的模型,大家有兴趣试试吗?
1 2 3 4 5 6 7 8 下页 末页 (共8页)