photo

Delshad Ayoubi


2017년부터 활동

Followers: 0   Following: 0

통계

All
MATLAB Answers

9 질문
0 답변

Cody

0 문제
8 답안

순위
150,050
of 300,851

평판
0

참여
9 질문
0 답변

답변 채택
55.56%

획득한 표
0

순위
 of 21,094

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
45,454
of 171,294

참여
0 문제
8 답안

점수
90

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Thankful Level 3
  • Solver

배지 보기

Feeds

보기 기준

질문


How can I make my code faster?
clear, clc, close all %-------------------------------------------------------------% N = 10^3; M = 400; radie = 5...

7년 초과 전 | 답변 수: 1 | 0

1

답변

질문


How do I use hist3 with my code?
In this code, I'm plotting a lot of particles and I want to represent them visually in a hist3 plot. I don't know how to make it...

거의 8년 전 | 답변 수: 0 | 0

0

답변

질문


Double for loop in a random walk. How do I loop over all particles simultaneously instead of looping the amount of steps for each separate particle one at a time?
I currently have a script that utilizes a double for loop in order to create a random walk in 2D. It however is looping over all...

거의 8년 전 | 답변 수: 2 | 0

2

답변

질문


How do I make a 2D randomwalk?
I have so far only been able to make a 1D randomwalk but I have to make it into 2D. Below is my code for 1D. How do I change it ...

거의 8년 전 | 답변 수: 1 | 0

1

답변

질문


I want to loop a value into a vector, how do I do this?
I am trying to loop through my script in order to get several values of one variable (D_N), and then putting all these values in...

대략 8년 전 | 답변 수: 2 | 0

2

답변

질문


How to put all the values of a for loop in a vector?
I want D_N to get another value in each loop and then put that value in a vector, T amount of times. Basically, I want to be abl...

대략 8년 전 | 답변 수: 0 | 0

0

답변

질문


Plot the same function several times in one go (Random walk)?
clear clc ================== N = 10; % number of steps. M = 10; x_t(1) = 0; for n = 1:N a = ...

대략 8년 전 | 답변 수: 1 | 0

1

답변

질문


How do I draw the graph of the same function several times?
clear clc x_t(1) = 0; N = 10^2; for t = 1:N xlabel('t'), ylabel('x_t'), title('Random Walk') ...

8년 초과 전 | 답변 수: 1 | 0

1

답변

질문


Write a function fml(x) where given vector x returns first, middle and last. If the number of elements in the vector are even, middle should take the mean value of the innermost elements.
function [first, middle, last] = fml(x) %FML Returns the first, middle, and last element of x first = x(1); last = x(le...

8년 초과 전 | 답변 수: 1 | 0

1

답변

문제를 풀었습니다


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

8년 초과 전

문제를 풀었습니다


Is my wife right?
Regardless of input, output the string 'yes'.

8년 초과 전

문제를 풀었습니다


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

8년 초과 전

문제를 풀었습니다


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

8년 초과 전

문제를 풀었습니다


Add two numbers
Given a and b, return the sum a+b in c.

8년 초과 전

문제를 풀었습니다


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

8년 초과 전

문제를 풀었습니다


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

8년 초과 전

문제를 풀었습니다


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

8년 초과 전