質問


Recompose stacked column cell vectors into adjacent row cell vectors
I have a row array of cells, varargin, within a function. The contents of each cell corresponds to an argument supplied by the ...

約2年 前 | 1 件の回答 | 0

1

回答

質問


Deploy Java wrapper around m-file wrapper around a mex file?
I have successfully used Compiler SDK to deploy a Java wrapper around my home-made m-file wrapper around "intlinprog" (more than...

約2年 前 | 1 件の回答 | 0

1

回答

質問


Single extension not everywhere?
According to the following page, MATLAB 2019a should have automatic singleton extension: https://blogs.mathworks.com/loren/2016...

約2年 前 | 1 件の回答 | 0

1

回答

質問


Create table columns with some entries blank (no quote symbols)
I have a table with some Boolean variables. They show up as `true` or `false`. I would like the trues to show up as (say) "Y" ...

約2年 前 | 1 件の回答 | 0

1

回答

質問


char(2713) and fprintf('\x2713\n') don't show a checkmark in the command window
According to https://en.wikipedia.org/wiki/Check_mark, the unicode for a checkmark is 2713. However, `char(2713)` doesn't show ...

約2年 前 | 2 件の回答 | 1

2

回答

回答済み
intlinprog quits due to incorrect Relative Gap
TMW suggest scaling the data so as to reduce the dynamic range. What I found to work was to rescale the objective function so t...

2年以上 前 | 0

質問


intlinprog quits due to incorrect Relative Gap
I am calling intlinprog indirectly using Problem-Based Approach (https://www.mathworks.com/help/optim/problem-based-approach.htm...

2年以上 前 | 1 件の回答 | 1

1

回答

質問


Read CSV into table, but quoted text data contain new-lines
I am using "readtable" to read a CSV file into a table. The first row consist of column headings, and there are no row names. ...

3年弱 前 | 1 件の回答 | 0

1

回答

質問


Extract equivalent RGB without transparency from PNG with alpha channel
I used the "imread" (https://www.mathworks.com/help/matlab/ref/imread.html#btnczv9-1-transparency) function to read a PNG image....

3年弱 前 | 2 件の回答 | 0

2

回答

回答済み
Compiler SDK: Testing *.jar file + runtime as if on a virgin machine
According to TMW, there's not much to be gained by collecting key files needed to use the MATLAB Runtime into a project folder. ...

3年弱 前 | 0

| 採用済み

質問


Compiler SDK: Testing *.jar file + runtime as if on a virgin machine
Hello, I wrote a function in MyFunction.m that that performs minor processing on its inputs before invoking "intlinprog". I us...

3年弱 前 | 1 件の回答 | 0

1

回答

質問


Plotted a graph, want to specify label position relative to node
I plotted a graph, but the node labels sometimes collide: A=ceil(10*rand(30)); A=triu(...

3年弱 前 | 1 件の回答 | 0

1

回答

回答済み
Render 1D column of OptimizationVariable/OptimizationExpression objects to string?
Here is one solution for a 1D column of OptimizationVariable objects and another solution for a 1D column of OptimizationExpress...

3年弱 前 | 0

質問


In Matlab 2019, 2020, or 2021, can parallel computing be used with intlinprog?
Some course material from 2018 shows that parallel computing applies to many optimization solvers, but not "intlinprog". Can in...

3年弱 前 | 1 件の回答 | 0

1

回答

質問


Render 1D column of OptimizationVariable/OptimizationExpression objects to string?
In Matlab 2019a, I have a table wherein a column `IFpvfd` is an `OptimizationVariable` array: myTable = table( [1:3]' , ... ...

3年弱 前 | 2 件の回答 | 0

2

回答

質問


Matlab "more" command: "q" doesn't always quit
According to the help for "more", pressing "q" should stop the pager. It doesn't always work, when paging through: more on ...

約3年 前 | 0 件の回答 | 0

0

回答

質問


Matlab intlinprog metrics differ, solver data identical
I'm seeing 2 disparate behaviours with when using Matlab's intlinprog optimizer. As luck would have it, it involves large-ish d...

3年以上 前 | 0 件の回答 | 1

0

回答

質問


Can String automatically convert to MWNumericArray of type double?
Suppose a Java packaged MATLAB function accepts a MWNumericArray of MATLAB type double, e.g., this makesqr example function. n ...

3年以上 前 | 0 件の回答 | 0

0

回答

質問


Generate command-line command from library compiler project?
I am using the Library Compiler to generate a Java package. From the saved project, is there any way to generate the command-li...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


Inconsistent array notation in Java interface generated by MATLAB Compiler SDK?
To call Matlab functions from Java, MATLAB's Compiler SDK generates functions with the following signatures. /* mlx interface -...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


Specific organizational scheme for Matlab documentation?
According to this thread, the hierarchical organization of headings on the Content pane is the authoritative structure of the do...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


`mlx` interface for Java packaging of Matlab functions?
I am looking at the Matlab information on packaging functions for invocation from Java, specifically in the context of a variabl...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


MWArray: Non-conventional-Matlab terminology for data types and arrays?
As far as I know, and based on the thread "scalar vs matrix vs vector vs array??", a double array in Matlab is an array of type ...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


Matlab function takes 1 argument, Java caller provides 2
The Mathworks page for an example makesqr.m shows a 1-argument function % makesqr.m %---------- function y = makesqr(x) y = ...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


Example of coding a `struct` in Java when packaging Matlab function?
I am embarking on writing a Java wrapper for intlinprog, and learning Java at the same time. My OOP experience is C++ circa 200...

3年以上 前 | 1 件の回答 | 0

1

回答

回答済み
Java-wrapped Matlab function: `java` can't load/find `main` sample invoker class
This answer is definitely for the Java newbies. The class path for `java` needs to include the directory `.` of the newly-compi...

3年以上 前 | 0

| 採用済み

質問


Java-wrapped Matlab function: `java` can't load/find `main` sample invoker class
I'm following a MATLAB example of wrapping a MATLAB function in a Java interface [1]. The sample driver (i.e., invoker of the w...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


JDK provider and version disparities
I am using Matlab Compiler SDK to make `intlinprog` invokable from Java. I don't program in Java (yet), but have used C++/STL 1...

3年以上 前 | 1 件の回答 | 0

1

回答

回答済み
How to interpret entries in documentation's left pane
Thank you both, Stephen Cobeldick and "the cyclist". That helps a lot. That fact that there are "peer" pages, and they are act...

3年以上 前 | 0

質問


How to interpret entries in documentation's left pane
Can anyone please explain how to interpret the entries in the left pane of the Matlab documentation? I am specifically referrin...

3年以上 前 | 3 件の回答 | 0

3

回答

さらに読み込む