已回答
can i install Matlab runtime (MCR) on android tab?
I don't think so, but your best bet is to contact technical support.

12 years 前 | 0

已回答
Recommendation for Student taking Antennas
I would ask the instructor of the course and past students.

12 years 前 | 0

已回答
Power calculation of various frequency components in a time varying signal
Seems reasonable enough.

12 years 前 | 0

已回答
error when open .fig file
We don't really have enough information about how to deal with this. What instructions came with the book? Do you have the corre...

12 years 前 | 0

已回答
Fullscreen presentation of a movie in the MATLAB
I believe you can play quicktime movies with <http://gru.brain.riken.jp/doku.php/mgl/functionreferencemovie mglMovie>. I am not ...

12 years 前 | 0

已回答
generate random numbers in engineering notation with precision
What do you mean by format? Computers tend to work with integers and floats, with floats coming in single and double precision v...

12 years 前 | 0

已回答
Best Fit Line Drawing
For a straight line you can use |lsline| plot(randn(10, 1), '*') lsline

12 years 前 | 1

已回答
Space between bars in hist plot
You are looking for the BarWidth property plotyy(x1,y1,x2,y2,@(x,y)bar(x,y,1,'c', 'barwidth', 0.9),'stairs')

12 years 前 | 0

| 已接受

已回答
Replacing characters in a string
I think |regexprep| does what you want. You need to modify the regexp a little bit: s = regexprep(strcell, '(\w+)ly', '$1')...

12 years 前 | 0

已回答
()-indexing must appear last in an index expression
_What i whant to do here is calculate the value of the functon b(l) on D(l,h)_ The simple answer is that despite the fact tha...

12 years 前 | 0

已回答
find multiple words in a cell
I am sure that this is over thinking the solution and I doubt that using |regexp| is optimal, but I was curious how bad it would...

12 years 前 | 0

已回答
Input Vector Graphics into Matlab
You can definitely import an EPS file (and any other vector graphic that is saved as plain text) by simply reading in the text f...

12 years 前 | 1

已回答
What letters can be used in variable names?
I think the function you are looking for is called |isvarname|. This handles the special keyword strings (e.g., "end" and "for")...

12 years 前 | 0

已回答
Am I running in parallel? (best way to check)
MATLAB has a number of such functions that tell you about the state of the world (e.g., |ispc|, |isdeployed|, |isjava|). These f...

12 years 前 | 0

已回答
Professional looking Matlab FAQ
# I would suggest that this be left up to TMW since they have professional documentation writers. Answering these types of quest...

12 years 前 | 2

已回答
How can I insert proper tex interpreter inside figures?
While my guess is that their is probably a much simpler solution (like install the correct fonts). The TeX interpreter is fully ...

12 years 前 | 0

已回答
How to overload display function properly?
It seems there are three questions here: _1. Does that mean the display function has another input argument which has the var...

12 years 前 | 0

已回答
Faster way to initilize arrays via empty matrix multiplication?
Yair has a nice <http://undocumentedmatlab.com/blog/preallocation-performance/ blog post> about this (with some good comments at...

12 years 前 | 0

已回答
use "for loop" for n times but n is not fixed
I wouldn't do it this way, but recursion is a useful technique when you have an unknown number of loops. function x = loope...

12 years 前 | 1

已回答
subsref overload has fewer outputs than expected on cell attribute
I am not following everything ... The two commands |instance.some_cell| and |instance.some_cell{:}| mean different things. See a...

12 years 前 | 0

已回答
How do I get more info on class method?
As an example to get help with the isplaying method of the MATLAB audioplayer class you would do help audioplayer.isplaying...

12 years 前 | 0

| 已接受

已回答
How can I replicate this matrix
I like questions that can be answered with one-liners ... F([reshape(repmat(1:length(F), 3, 1), 3*length(F), 1); repmat(len...

12 years 前 | 0

已回答
How to get z for different x
Presumably you want to use ./ instead of /, just like you are using .* instead of *

12 years 前 | 0

已回答
adding space before capital letters in variable names
You can use REGEXPREP. To just add a space before every uppercase letter regexprep('varNameOne', '([A-Z])', ' $1') To ad...

12 years 前 | 1

已回答
Should Toolboxes be Packages?
_Could someone explain to me why this is?_ Many of the toolboxes where created before the ability to create packages existed....

12 years 前 | 1

| 已接受

已回答
Contributors metainfo: reputation and more
Azzi Abdelmalek is the first to cross the old editor boundary (1500 rep) and now is in excess of 1600 rep. Well done.

12 years 前 | 1

已回答
Edit file in existing Matlab from shell
The MATLAB editor is programmable from MATLAB (see <http://undocumentedmatlab.com/blog/accessing-the-matlab-editor/ Yair's blog>...

12 years 前 | 1

已回答
nested for loop for moving average filter
While you can do this with a loop, MATLAB has some highly optimized commands for filtering. The simpliest is probably |conv|. ...

12 years 前 | 2

已回答
Identify a character in a file and edit the file from that character.
I don't think I would use MATLAB to do this since learning sed and/or awk is really useful ... A way to do it in MATLAB f...

12 years 前 | 0

| 已接受

已回答
How to make event based programming in MATLAB
Have you read the OOP documentation? You can do it to a certain extent, however, the single thread nature causes problems.

12 years 前 | 0

加载更多