Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Could anyone help translate this Python code to Matlab code?

조회 수: 1 (최근 30일)
Gaëtan Poirier
Gaëtan Poirier 2017년 10월 26일
댓글: Gaëtan Poirier 2017년 10월 26일
I would appreciate if someone could help me translate the following Python code to Matlab code:
import random
N = 10
L = 20.0
sigma = 0.75
n_runs = 800
for runs in range(n_runs):
y = [random.uniform(0.0 L - 2 * N * sigma) for k in range (N)]
y.sort()
print [y[i] + (2 * i + 1) * sigma for i in range(N)]|
Thank you to anyone who can assist me.
  댓글 수: 2
Steven Lord
Steven Lord 2017년 10월 26일
This looks very similar to the message you posted about 10 hours ago. If it's related to the same problem, you should probably update that other message since you've already received one response there.
Gaëtan Poirier
Gaëtan Poirier 2017년 10월 26일
I have received a response, but after updating the question, no one has responded to the update. That is why I wanted to post another question.

답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by