質問


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...

9年弱 前 | 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 ...

9年弱 前 | 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...

9年弱 前 | 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...

9年弱 前 | 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...

約9年 前 | 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...

約9年 前 | 0 件の回答 | 0

0

回答

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

約9年 前 | 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...

約9年 前 | 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...

約9年 前 | 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...

約9年 前 | 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...

約9年 前 | 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), ...

9年以上 前 | 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...

9年以上 前 | 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...

9年以上 前 | 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 [~...

9年以上 前 | 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 ...

9年以上 前 | 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年以上 前 | 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!

10年弱 前 | 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...

10年弱 前 | 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: ...

10年弱 前 | 1 件の回答 | 0

1

回答

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

10年弱 前 | 0

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

10年弱 前 | 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...

10年弱 前 | 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...

約10年 前 | 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...

約10年 前 | 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 ...

約10年 前 | 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...

約10年 前 | 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...

約10年 前 | 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...

約10年 前 | 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...

10年以上 前 | 1 件の回答 | 0

1

回答

さらに読み込む