提问


saved pdf file doesn't look like figure
When I save a figure as a pdf file, the pdf version adds spaces which aren't in the original. The two images attached illustrat...

8 years 前 | 2 个回答 | 0

2

个回答

提问


Matlab central defaults to de.mathworks.com
I was in Switzerland, using matlab answers on chromium-browser, and was trying desperately to get the usa mathworks site, since ...

8 years 前 | 1 个回答 | 0

1

个回答

提问


Matlab is inconsistent when raising numbers to the zero'th power:
In matlab R2015a -1^0 returns -1 but a = -1 ; a^0 returns 1 wolfram alpha agrees that -1^0 = -1...

8 years 前 | 1 个回答 | 0

1

个回答

已回答
Execute a command on exit from a workspace
Here's an answer, obtained with the help of Matlab technical support %Keyboards in the CALLER workspace not current workspa...

8 years 前 | 0

| 已接受

提问


Comparing cell arrays of symbolic variables
I'd like to be able to compare two arrays, each consisting of symbolic variables. In particular I'd like to be able to run set...

8 years 前 | 1 个回答 | 0

1

个回答

提问


Solving an optimal control problem using filter?
I'm trying to solve a pair of difference equations for an economic problem. It appears from the web that the appropriate matlab...

8 years 前 | 0 个回答 | 0

0

个回答

已回答
Problems opening matlab from a remote shell from Ubuntu 14.04.
Opening matlab with the -nojvm flag fixed this problem.

8 years 前 | 1

| 已接受

已回答
matlabFunction forces me (unnecessarily) to include a dummy integration variable as an argument of the anonymous function it creates.
I talked to matlab support about this. The problem goes away if you set the IgnoreAnalyticConstraints flag to true. sym...

8 years 前 | 2

| 已接受

提问


matlabFunction forces me (unnecessarily) to include a dummy integration variable as an argument of the anonymous function it creates.
In the example below, I use matlabFunction to create the anonymous function intF{2}. The function to be created has five argum...

8 years 前 | 1 个回答 | 1

1

个回答

提问


Using dsolve, replace arbitrary constants like C11 with one's own parameter name.
when one solves a differential equation using dsolve, without specifying terminal conditions, matlab outputs the solution with a...

8 years 前 | 1 个回答 | 0

1

个回答

提问


summing over a multi-dimensional cartesian product using nested arrayfun commands
I have an anonymous function with multiple arguments and I want to sum over all of them. For example, consider the simple fun...

8 years 前 | 2 个回答 | 0

2

个回答

提问


anonymous function which outputs a vector of sums when the input is a vector of indices.
I'd like to write an anonymous function such as f = @(X,m,A) sum(X(m:A)) where X is a vector, m < numel(X), ...

8 years 前 | 1 个回答 | 0

1

个回答

提问


preserving variable class when extracting fields from a struct
I have a program that requires passing a large number of variables to a function. Rather than have a long list of global vari...

8 years 前 | 4 个回答 | 0

4

个回答

已回答
for loop to update frequency count
This gets close I think A = floor(rand(500)*1001);B=A(:);I = find(B<501); [N,X] = hist(B(I),501); X contains the c...

8 years 前 | 0

提问


maximum variable size allowed by the program is exceeded but it's not
There have been many many threads on this topic but none seem to apply to my case. I'm running 64 bit matlab so that [~...

8 years 前 | 0 个回答 | 0

0

个回答

提问


Problems opening matlab from a remote shell from Ubuntu 14.04.
I've upgraded from Ubuntu 12.04 to 14.04, and this has created a problem which I didn't have with Ubuntu 12.04 when I open a ...

8 years 前 | 1 个回答 | 0

1

个回答

提问


output matlab markers as part of a character string.
It's amazing that nobody has asked this before, but I'd like to insert the standard matlab plot markers---square, diamond, circl...

9 years 前 | 1 个回答 | 1

1

个回答

提问


Condition on whether or not matlab is running in 'nodesktop' mode
is there a way to condition on whether or not I called matlab in 'nodesktop' mode? Thanks in advance!

9 years 前 | 1 个回答 | 0

1

个回答

提问


Preventing matlab from reversing my signs in symbolic expressions
The symbolic toolbox reverses the signs of the expressions I type. For example syms a b f = (1-x)*a + b return...

9 years 前 | 1 个回答 | 0

1

个回答

提问


double summation without a loop
I have an anonymous function f that has two indices, i and t. i runs from 1 to n; t runs from 1 to m != n. For example: ...

9 years 前 | 1 个回答 | 0

1

个回答

已回答
Suppress Academic license notification
clc clears the screen before printing the reminder, but indeed, not a big deal, thanks!

9 years 前 | 0

已回答
Suppress Academic license notification
After I run my startup script, it announces Academic License and then the >> prompt.

9 years 前 | 0

提问


Suppress Academic license notification
I know this is trivial in the grand scheme of things, but I'd love to remove the notification everytime I start matlab R15a that...

9 years 前 | 6 个回答 | 0

6

个回答

提问


Can I assign a single value to multiple elements of a cell array without a loop
For example, I have an array that looks like myArray = [3] [] [3] [] I'd like to fill out the empty ele...

9 years 前 | 2 个回答 | 0

2

个回答

提问


Prevent matlab figures from jumping from one virtual desktop to another
Not sure of the right language to describe this issue... I run matlab in Ubuntu, using fvwm, which allows me to have multiple...

9 years 前 | 0 个回答 | 5

0

个回答

提问


displaying the colors of a color matrix
Hi, I have a matrix of colors, C = [.5142 0.7695 0.7258; 0.9300 0.8644 0.4048; 0.6929 0.6784 ...

9 years 前 | 1 个回答 | 0

1

个回答

提问


flag whether or not a program has been called by createTask
I run certain jobs either as standalone jobs, or in parallel, for example called by createTask. Is there some way to distingu...

9 years 前 | 1 个回答 | 1

1

个回答

提问


Use index from max() to extract matching values from another array
Suppose I have 2 n x m arrays A and B and I get the maximum element of each column of A with [~,I] = max(A) Now I want...

9 years 前 | 1 个回答 | 0

1

个回答

提问


find element of a cell or char array that matches a nonleading substring
This question seems closely related to thread 50624-testing-for-the-presence-of-a-substring-in-a-cell-array-of-strings but has a...

9 years 前 | 2 个回答 | 0

2

个回答

提问


Using dir with multiple wildcards for directories
I'd like to be able to use dir to list all files in the grandchildren directories of my cwd, as in dir('*/*') As far...

9 years 前 | 1 个回答 | 0

1

个回答

加载更多