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

más de 13 años hace | 0

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

más de 13 años hace | 0

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

más de 13 años hace | 0

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

más de 13 años hace | 0

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

más de 13 años hace | 0

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

más de 13 años hace | 0

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

más de 13 años hace | 1

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

más de 13 años hace | 0

| aceptada

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

más de 13 años hace | 0

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

más de 13 años hace | 0

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

más de 13 años hace | 0

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

más de 13 años hace | 1

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

más de 13 años hace | 0

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

más de 13 años hace | 0

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

más de 13 años hace | 2

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

más de 13 años hace | 0

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

más de 13 años hace | 0

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

más de 13 años hace | 0

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

más de 13 años hace | 1

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

más de 13 años hace | 0

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

más de 13 años hace | 0

| aceptada

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

más de 13 años hace | 0

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

más de 13 años hace | 0

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

más de 13 años hace | 1

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

más de 13 años hace | 1

| aceptada

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

más de 13 años hace | 1

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

más de 13 años hace | 1

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

más de 13 años hace | 2

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

más de 13 años hace | 0

| aceptada

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

más de 13 años hace | 0

Cargar más