已回答
Command lines appear when I run an app.
It sounds like you have a line somewhere that is missing a semicolon. If you set a property in the app but don't terminate the ...

3 years 前 | 0

| 已接受

已回答
Median power using find function
From that line, ninteg(1,j:) is invalid syntax. If you want element j through the end of the vector, you need ninteg(1,j:end...

3 years 前 | 0

已回答
Solving ODEs using trapezoidal method in vector/matrix notation
A function handle works like this: f = @(x,t) x.^2; y = f(3,12); the function f takes 3 and 12 as input variables and names ...

3 years 前 | 0

已回答
how to find X*(e^-jw) ?
The complex conjugate of a vector X is given by conj(X)

3 years 前 | 0

已回答
store multiple outputs into one matrix
Arrays with compatible dimensions can be concatenated using either square brackets or the cat() function. In this case, it look...

3 years 前 | 0

已回答
How to fold up code in live script?
This isn't a feature for live scripts right now, but if you would like to see it please consider submitting an enhancement reque...

6 years 前 | 3

| 已接受