从mathematica到matlab的代码——table命令

发布于 2024-10-17 15:08:39 字数 526 浏览 2 评论 0原文

我有来自mathematica的以下代码,并试图用matlab来做,但我做不到:

tX := Sum[Random[] - 0.5, {m}]/m
m=1;
km=10m;
dataX = Table[tX, {km}]
fig2 = ListPlot[dataX, PlotStyle -> {RGBColor[1, 0, 0], PointSize[0.015]}]

我这样做了:

tx=sum(rand(1,m)-0.5) ./ m;
m=100;
km=100*m;
datax=zeros(tx,1);
for i=1:km
    datax(i,1)=[tx];
end

我有两个问题:

  1. 在mathematica中,tx :=意味着变量tx是每次使用时都会进行评估。 我怎样才能在matlab中完成这个?
  2. 我的代码中有一些错误,因为当它给我绘图时,它给了我一条直线,但它应该给出大量的点。

I have the following code from mathematica and trying to do it with matlab but I can't do it:

tX := Sum[Random[] - 0.5, {m}]/m
m=1;
km=10m;
dataX = Table[tX, {km}]
fig2 = ListPlot[dataX, PlotStyle -> {RGBColor[1, 0, 0], PointSize[0.015]}]

I did this :

tx=sum(rand(1,m)-0.5) ./ m;
m=100;
km=100*m;
datax=zeros(tx,1);
for i=1:km
    datax(i,1)=[tx];
end

I have two problems:

  1. In mathematica the tx := means that the variable tx is evaluated each time it is used.
    How can I accomplish this in matlab?
  2. I have some mistake or mistakes in my code because when it gives me the plot it gives me a straight line but it should give a big number of points.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

喜爱纠缠 2024-10-24 15:08:39

我相信这就是您想要的:

m = 1;
km = 10*m;
tX = @(m) sum( rand(m,1) - 0.5 )/ m;
dataX = arrayfun(tX, m * ones(km,1)); 
plot(1:km, dataX, 'r.')

要生成 tX 的实例,只需输入 tX(m),其中 m 是您想要的值。

解释一下:

tX 是一个函数句柄,它相当于 Mathematica 中的 tX[m_] := Sum[RandomReal[],{m}]/m 。

dataX 是用 arrayfun 构造的,它将第一个槽中的函数句柄应用于第二个槽中向量中的每个元素。该命令大致相当于 Mathematica 中的 Table[tX[m],{km}]

I believe this is what you want:

m = 1;
km = 10*m;
tX = @(m) sum( rand(m,1) - 0.5 )/ m;
dataX = arrayfun(tX, m * ones(km,1)); 
plot(1:km, dataX, 'r.')

To generate an instance of tX, just type tX(m), where m is the value you want.

to explain some of this:

tX is a function handle, it is equivalent to tX[m_] := Sum[RandomReal[],{m}]/m in Mathematica.

dataX is constructed with arrayfun which applies the function handle in the first slot to each element in the vector in the second slot. That command is roughly equivalent to Table[tX[m],{km}] in Mathematica.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文