已回答
Datacursormode
Yes this is possible and documented under "Creating Multiple Data Tips" on: <http://www.mathworks.com/help/techdoc/creating_p...

13 years 前 | 1

| 已接受

已回答
Database Connectivity in MATLAB 2010B picks up only one row from Oracle
Please consider using JDBC drivers instead of ODBC: # They are more reliable on 64-bit Windows. # They should perform better...

13 years 前 | 0

| 已接受

已回答
Extendable, but bacward compatible M code.
Working with structures is indeed an option. Other options include working with VARARGIN and VARARGOUT: <http://www.mathworks.c...

13 years 前 | 0

| 已接受

已回答
Forcing a singleton to be treated as a SAFEARRAY
The default data conversion rules for MATLAB's COM interface convert all non-scalar MATLAB arrays into 2-dimensional SAFEARRAYs...

13 years 前 | 1

已回答
Mex Error: undeclared identifier What does this mean?
USE_DEFAULT_SIM_STATE is defined in simstruc.h so it sounds like you may be missing the following include in your C code: #...

13 years 前 | 0

已回答
Simple GUI to allow Surface plot from excel
There are various ways in which you can call MATLAB from Excel: * <http://www.mathworks.com/products/excellink/ Spreadsheet L...

14 years 前 | 0

已回答
Inserting a column in a matrix without deleting any column
Suppose you have: >> A=reshape(1:16,4,4) A = 1 5 9 13 2 6 10 14 3 ...

14 years 前 | 12

| 已接受

已回答
Import data from GUI into cell
Suppose you have: A = 'a b c'; Possibly obtained by: A = get(handles.myTextEdit,'String'); Then to get each char...

14 years 前 | 0

已回答
Embed a Matlab graph in a C++ GUI application
You cannot embed an "interactive graph" into your C++ GUI, static graphs should work though. So you are then just displaying the...

14 years 前 | 1

已回答
Combining legend data
What you could do here is first change your code a little to obtain handles to the plot: p1= plot(4.5+rand(1,50),'o'); ...

14 years 前 | 1

| 已接受

已回答
Iteration of changing discrete variables
You do not necessarily need to have a "standard increase" in a FOR-loop variable, for example the following code is valid: ...

14 years 前 | 1

已回答
Use of C++ External Interfaces API with Matlab Compiler Run Time
The following section of the MATLAB documentation tells you which libraries are needed to be able to use the MAT-File API from e...

14 years 前 | 1

| 已接受

已回答
"From Workspace" time delay
If you right-click a block and select "Block Properties..." you can enter a Priority which influences the order in which blocks ...

14 years 前 | 0

| 已接受

已回答
I have 2 columns and 10 rows of numerical data in my excel file. How to import this data in to MATLAB and then plot it?
Importing data from Excel can be done using the “readtable” function. For example, to read all data from myfile.xls: T =...

14 years 前 | 11

| 已接受

已回答
How to create windows forms in MATLAB?
I assume you are talking about .NET's Windows Forms, if so you would need to start with loading the correct Assembly: NET.a...

14 years 前 | 3

| 已接受

已回答
Can you load compiled code from an icon?
Yes that should be possible; simply create a new shortcut, on for example your desktop, by: 1. Right-clicking on your desktop...

14 years 前 | 0

| 已接受

已回答
How to search for specific numbers in a structure with cell matrix
Suppose you have vectors: t = 1:10; y = t.^2; And you want to plot(t,y) where for example 2 < t < 5. You could use th...

14 years 前 | 0

已回答
calling Java methods using JNI/C++ (via Swig) from Matlab -> UnsatisfiesLinkError
Please make sure you add both your JAR-file and the directory containing the native library to MATLAB's *static* Java Path. So d...

14 years 前 | 0

已回答
Line break in "question dialog"
Functions like INPUTDLG and MSGBOX do not interpret '\n' characters; SPRINTF does however. So using SPRINTF should do the trick:...

14 years 前 | 4

已回答
is it possible to specify a project library only
You should be able to use private functions for this. More information about private functions can be found in the MATLAB docume...

14 years 前 | 0

| 已接受