Réponse apportée
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...

environ 15 ans il y a | 3

| A accepté

Réponse apportée
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...

environ 15 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 15 ans il y a | 0

Réponse apportée
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...

environ 15 ans il y a | 0

Réponse apportée
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:...

environ 15 ans il y a | 4

Réponse apportée
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...

environ 15 ans il y a | 0

| A accepté