Answered
Creating intersection lines in a semilogx graph
Addressing the first 3 points, it sounds like you want to create a datatip with crosshairs on one point of your curve. You can p...

ungefär 13 år ago | 1

Answered
Is it possible to display a crosshair everytime a point is marked with the data cursor tool in MATLAB R2010b?
You can achieve this by modifying the |'UpdateFcn'| property of the <http://www.mathworks.com/help/techdoc/ref/datacursormode.ht...

ungefär 13 år ago | 3

Answered
Why am I getting an error message "undefined function" when using the LAGMATRIX function in MATLAB 7.10 (R2010a)?
Have you tried including that file using the <http://www.mathworks.com/help/toolbox/compiler/mcc.html MCC> archive option |-a|? ...

ungefär 13 år ago | 2

Answered
3D plot from imported Excel data
Your variable |Z| is still a column vector, since |size(test,2)| is 3 and thus the column index |3:size(test,2)| is still just 3...

ungefär 13 år ago | 5

Answered
Error creating a function handle using str2func in a function
The solution I found was to make a call to <http://www.mathworks.com/help/techdoc/ref/rehash.html REHASH> after you create each ...

ungefär 13 år ago | 3

Answered
How can I remove all the paths for Toolboxes in MATLAB?
It sounds like you want to have MATLAB use _your_ functions instead of functions with the same name in other toolboxes. The easi...

ungefär 13 år ago | 6

Answered
Creating a matrix of blank spaces.
If you are only making a 1-D matrix (i.e. a row or column vector) then the function <http://www.mathworks.com/help/techdoc/ref/b...

ungefär 13 år ago | 8

Answered
What does a "~" mean in the following code
This is the <http://www.mathworks.com/help/techdoc/ref/not.html logical NOT operator>, so |~isempty(E)| will evaluate to true wh...

ungefär 13 år ago | 7

| accepted