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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 1

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

mehr als 13 Jahre vor | 0

| akzeptiert

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 1

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 2

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 1

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 0

| akzeptiert

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 0

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

mehr als 13 Jahre vor | 1

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

mehr als 13 Jahre vor | 1

| akzeptiert

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

mehr als 13 Jahre vor | 1

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

mehr als 13 Jahre vor | 1

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

mehr als 13 Jahre vor | 2

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

mehr als 13 Jahre vor | 0

| akzeptiert

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

mehr als 13 Jahre vor | 0

Mehr laden