Feeds
답변 있음
How can I display all elements of an array in a single row?
Arrays cannot have different numbers of columns in each row. Maybe you're dealing with a cell array, in which case you'd just t...
How can I display all elements of an array in a single row?
Arrays cannot have different numbers of columns in each row. Maybe you're dealing with a cell array, in which case you'd just t...
대략 13년 전 | 0
답변 있음
Help with For-Loop question?
N=10; x=zeros(N,numel(pi/5:pi/5:2*pi)); x(1,:)=pi/5:pi/5:2*pi; for j=2:N x(j,:)=sin(x(j-1,:)); end plot(x(1,:),x')
Help with For-Loop question?
N=10; x=zeros(N,numel(pi/5:pi/5:2*pi)); x(1,:)=pi/5:pi/5:2*pi; for j=2:N x(j,:)=sin(x(j-1,:)); end plot(x(1,:),x')
대략 13년 전 | 1
| 수락됨
답변 있음
Help with For-Loop question?
The answer above doesn't achieve what you were asking for. Try this: N=10; x=zeros(N,numel(pi/5:pi/5:2*pi)); x(1,:)=pi/5:pi/...
Help with For-Loop question?
The answer above doesn't achieve what you were asking for. Try this: N=10; x=zeros(N,numel(pi/5:pi/5:2*pi)); x(1,:)=pi/5:pi/...
대략 13년 전 | 0
| 수락됨
질문
Solving the same linear ODE with several initial conditions
Hi, I want to solve a system of the form X(t)'=A*X(t) several times with different initial conditions. Of course, I could so...
대략 13년 전 | 답변 수: 0 | 0
0
답변답변 있음
mex can't find gcc in path
I figured it out. All I had to do is run: sudo ln -s /Developer/usr/bin/gcc-4.2 /usr/bin/gcc-4.2 The problem was that /Deve...
mex can't find gcc in path
I figured it out. All I had to do is run: sudo ln -s /Developer/usr/bin/gcc-4.2 /usr/bin/gcc-4.2 The problem was that /Deve...
13년 초과 전 | 0
| 수락됨
질문
mex can't find gcc in path
Matlab-mex can't find my C compiler, even though it appears to be using the correct command. Observe: In Matlab: >> mex fo...
13년 초과 전 | 답변 수: 3 | 0
3
답변질문
problems calling matlab from command line in OS X
Hi. I installed Matlab 2011a before removing 2009a. After the installation '$which matlab' pointed to /usr/bin/matlab, which c...
13년 초과 전 | 답변 수: 2 | 1