Community Profile

photo

Philip Borghesani

MathWorks

Aktiv seit 2011

Developer on the MATLAB language team from 1997 through Feb 2019. Now an independent agent with interest in MATLAB Consulting. Look for an additional profile here.

Any opinions stated are my own and not those of MathWorks. I do not make policy, or official statements on behalf of the MathWorks.

Statistiken

All
  • Thankful Level 2
  • Knowledgeable Level 5
  • 36 Month Streak
  • Thankful Level 1
  • Pro
  • Revival Level 1
  • First Answer
  • Solver

Abzeichen anzeigen

Content Feed

Anzeigen nach

Beantwortet
mex file only found when in working directory, but not when in search path
Is the mex file dependent on other dlls in the same directory? It sounds to me that Matlab is finding the mex file but not some...

fast 5 Jahre vor | 1

| akzeptiert

Beantwortet
Matlab encoding issue?
Could you have a corrupted font file? What happens if you change the default fonts?

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
Ηow to properly measure the execution time of a piece of code
Matlab's JIT compiler performs different optimizations for code that runs multiple times and it may take many runs of a block of...

etwa 5 Jahre vor | 0

Beantwortet
Why is Matlab slow with large objects in the workspace even when RAM is not limited?
Close the workspace browser or hide its tab. It may be that changing the workspace preference for calculating statistical values...

etwa 5 Jahre vor | 2

| akzeptiert

Beantwortet
Slow readtable and low disk activity
With 64GB ram Windows can easily cache a 4GB file. The first time you run the code, or when another program accesses the file ...

etwa 5 Jahre vor | 0

| akzeptiert

Beantwortet
How to call .dll functions?
Mex files are normaly called just like other Matlab functions there is no need for loadlibrary. On Windows all mex files are ac...

etwa 5 Jahre vor | 0

Beantwortet
Replace all pointer to handle object by pointer to a different handle object
How about one extra level of indirection?: classdef node < handle properties X Y Z end en...

etwa 5 Jahre vor | 1

| akzeptiert

Beantwortet
Warning: A value of class "x" was indexed with no subscripts specified
Break the line into two or remove the extra parentheses. java.awt.Toolkit.getDefaultToolkit.getDesktopProperty("awt.multiClickI...

etwa 5 Jahre vor | 0

| akzeptiert

Beantwortet
Undefined function or variable 'profile'.
Per is correct. The profiler is not currently supported by the compiler. However the primary reason for this is that there hav...

mehr als 5 Jahre vor | 1

Beantwortet
How to find the mode of a string array (no longer works in 2018b)
Use a character vector instead of a string array: mode(['A','A','B'],2) % or mode('AABBCCC',2) I belive it was a bug th...

mehr als 5 Jahre vor | 0

Beantwortet
Documentation on JIT compiler?
For the most part I belive your question has been answered well in the comments above. One reason for limited availability of de...

mehr als 5 Jahre vor | 2

| akzeptiert

Beantwortet
How to pass a string (LPSTR) command to my C++ function?
There are two ways to work around this and you almost got it. Option 1: When casting from a char to a uint8 type in matlab to p...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
error using loadlibrary on delcom.dll/.h - any idea why this is not working?
It appears that delcom.h requires a #include of windows.h. <https://www.mathworks.com/matlabcentral/answers/95236-how-can-i-acc...

mehr als 5 Jahre vor | 0

Beantwortet
Handle object does not beheave as expected
To clear a property set it to [] instead of using the clear function. Clear only works for variables in the workspace not part ...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Loren says class properties can be the same as keywords but how?
Yes they can be but only sometimes. I believe at one point we considered loosening this up a bit more but there were other iss...

mehr als 5 Jahre vor | 0

Beantwortet
How to store .m files within a package folder
Not the way you are thinking of it however you can organize it this way: myCommonStuff/+mypackage %basic stuff myAddO...

mehr als 5 Jahre vor | 2

| akzeptiert

Beantwortet
Alternatives for using EVAL to access data in multi-layered struct?
I think this is where you went wrong: "To access specific data I use a recursive function to return the structure tree as string...

mehr als 5 Jahre vor | 0

Beantwortet
Matlab on AWS doesn't seem to recognize (@)Class-folders
You must add the complete @foldername folder. The clue here is |Caused by: Undefined function 'list' for input arguments of typ...

mehr als 5 Jahre vor | 0

Beantwortet
libstruct does not create the complete struct
It appears that there is a bug in the inspector. It does not seem to show all fields of a libstruct. Try accessing the fields ...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
"profile on -history" error help: "Cannot change the history while logging is enabled."
The error message could probably be better. Could you figure it out if the error was: _"Error cannot change history while profil...

mehr als 5 Jahre vor | 0

Beantwortet
clear MEX not unloading DLLs in 2016b
Clear mex and |clear all| should still unload mex files that are not in use or locked (see <https://www.mathworks.com/help/matla...

mehr als 5 Jahre vor | 0

Beantwortet
cellfun changes in R2017b
There was no change to cellfun. You are (were?) misusing eval inside of an anonymous function, In R2015b and later MATLAB will...

mehr als 5 Jahre vor | 1

Beantwortet
preallocating a structure with fieldnames in the form of a string from another structure
Don't use strings and don't think about eval. This could be done with |colon expansion| and a cell array to produce a |comma se...

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
Is it possible to override "Unsupported Version of Windows" message?
It appears that your server is running Server 2008 sp2 which is based on Vista and probably wont run any MATLAB more recent then...

mehr als 5 Jahre vor | 1

Beantwortet
string variable and command prompt
Short answer: yes. Long answer: Any MATLAB function that takes one or more character vectors as input can be called in _comm...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Different speed of execution of the same code in different versions Matlab. 2014b and 2017a
This feels like a bug to me and I filed a bug report. Walter is correct that coding this as a function is expected to produce f...

fast 6 Jahre vor | 1

| akzeptiert

Beantwortet
How can I combine two objects of different subclasses into the property of another class?
Two ways to do this: # Make player a cell array instead of an array of of human players. This is the simplest solution but m...

fast 6 Jahre vor | 1

Beantwortet
while debugging, one core constantly running
It appears you have encountered this issue: <https://www.mathworks.com/support/bugreports/1736753 Bug report 1736753> I suggest...

fast 6 Jahre vor | 1

| akzeptiert

Beantwortet
Histogram gives different BinCounts while appending BinEdges
The differences in histograms are due to slightly different algorithms used in the two functions. |Hist| uses the input points ...

fast 6 Jahre vor | 0

Beantwortet
How to preallocate tables using the table-function???
That syntax requires MATLAB R2018a. In most situations there is no need to pre-allocate a table. Just construct it from effi...

fast 6 Jahre vor | 1

| akzeptiert

Mehr laden