已回答
How to get and set ylabel position in normalized units?
You can set the units to normalized first: ... set(ylabh,'Units','normalized'); set(ylabh,'position',get(yl...

7 years 前 | 0

已回答
how to set a limit in each color in a color bar?
You only use three colors, so you can change |caxis| value in order to have the values you want at the limit because the colors,...

7 years 前 | 0

已回答
setting transparancy of legend?
In _undocumented Matlab_, you will find how to do it here: <http://undocumentedmatlab.com/blog/transparent-legend>.

7 years 前 | 4

已回答
conditional statement in one line for table columns
Have a look at the documentation, for example these: <http://www.mathworks.com/help/matlab/matlab_prog/find-array-elements-that-...

7 years 前 | 1

| 已接受

已回答
How to get value of a particular grid from 80*80 matrix?
Look at Matlab documentation: <http://www.mathworks.com/help/matlab/math/matrix-indexing.html matrix indexing> . What you want t...

7 years 前 | 0

已回答
Pseudo Random Integer with frequency constraints
One way to do it (it is not really concise and beautiful but works pretty fast): I put all the '1' in the matrix at random posit...

7 years 前 | 0

| 已接受

已回答
How can I create a list of ranges and tell the program to verify in which range is my number and pick the inferior limit?
Hi, * In Matlab, |inf| is the keyword for the infinity so you should avoid naming your inferior limits inf. Maybe you can nam...

7 years 前 | 0

已回答
How to get correct values of a(n) from this equation. Attached is my code but it gives wrong values. where n=1...5,
Here is what I have understood of your problem: When you calculate |a(n)|, you have a problem in the sum because when |k=n| t...

7 years 前 | 1

| 已接受

已回答
Index exceeds matrix dimensions error
You made a typo, you forgot the *: result = (Isc + Ki *(Top - Trf)) - Iph;

7 years 前 | 0

已回答
Create a Graph from a matrix
To get a directed graph, you should use *digraph* function. In order to do so, you have to build a standard square *adjacency m...

7 years 前 | 1

| 已接受

已回答
how to record the changing of columns
Hello, I am not sure about what you want to achieve exactly, but I hope this helps anyway: * working with a location array...

7 years 前 | 0