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

13 years ago | 0

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

13 years ago | 0

Answered
Power calculation of various frequency components in a time varying signal
Seems reasonable enough.

13 years ago | 0

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

13 years ago | 0

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

13 years ago | 0

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

13 years ago | 0

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

13 years ago | 1

Answered
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')

13 years ago | 0

| accepted

Answered
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')...

13 years ago | 0

Answered
()-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...

13 years ago | 0

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

13 years ago | 0

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

13 years ago | 1

Answered
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")...

13 years ago | 0

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

13 years ago | 0

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

13 years ago | 2

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

13 years ago | 0

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

13 years ago | 0

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

13 years ago | 0

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

13 years ago | 1

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

13 years ago | 0

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

13 years ago | 0

| accepted

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

13 years ago | 0

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

13 years ago | 0

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

13 years ago | 1

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

13 years ago | 1

| accepted

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

13 years ago | 1

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

13 years ago | 1

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

13 years ago | 2

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

13 years ago | 0

| accepted

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

13 years ago | 0

Load more