photo

Chinmay Anand

MathWorks

2019년부터 활동

Followers: 0   Following: 0

EDG Intern at Mathworks.

통계학

All
  • Knowledgeable Level 1
  • First Answer
  • Solver

배지 보기

Feeds

보기 기준

답변 있음
Access matrix location on one matrix with the data location on another matrix
In case if A and B are vectors ,( 1 x n ) matrices A(B) % It will give the values of A at indexes B

대략 5년 전 | 1

| 수락됨

답변 있음
mat file using jpeg files !
Files = dir('./Images'); % Your images are saved in Images folder in current directory for i=3:length(Files) % Loop star...

대략 5년 전 | 0

답변 있음
Help running a while loop?
A(1) = 1E10; t = 1; dt = 0.1; while t<=1000 dA(t) = -0.005*A(t); A(t+1)=A(t)+dA(t)*dt; plot(t,A(t),'bo') hold o...

대략 5년 전 | 0

답변 있음
User input while loop
x = []; % This will store screw Sizes while true loop = input('Continue? (1/0) : '); % 1 to continue 0 to break loop ...

대략 5년 전 | 1