Community Profile

photo

Philip Borghesani

MathWorks

Attivo dal 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.

Statistiche

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

Visualizza badge

Content Feed

Visto da

Risposto
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...

quasi 5 anni fa | 1

| accettato

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

quasi 5 anni fa | 0

| accettato

Risposto
Η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...

circa 5 anni fa | 0

Risposto
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...

circa 5 anni fa | 2

| accettato

Risposto
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 ...

circa 5 anni fa | 0

| accettato

Risposto
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...

circa 5 anni fa | 0

Risposto
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...

circa 5 anni fa | 1

| accettato

Risposto
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...

oltre 5 anni fa | 0

| accettato

Risposto
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...

oltre 5 anni fa | 1

Risposto
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...

oltre 5 anni fa | 0

Risposto
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...

oltre 5 anni fa | 2

| accettato

Risposto
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...

oltre 5 anni fa | 0

| accettato

Risposto
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...

oltre 5 anni fa | 0

Risposto
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 ...

oltre 5 anni fa | 0

| accettato

Risposto
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...

oltre 5 anni fa | 0

Risposto
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...

oltre 5 anni fa | 2

| accettato

Risposto
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...

oltre 5 anni fa | 0

Risposto
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...

oltre 5 anni fa | 0

Risposto
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 ...

oltre 5 anni fa | 0

| accettato

Risposto
"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...

oltre 5 anni fa | 0

Risposto
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...

oltre 5 anni fa | 0

Risposto
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...

oltre 5 anni fa | 1

Risposto
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...

oltre 5 anni fa | 1

| accettato

Risposto
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...

oltre 5 anni fa | 1

Risposto
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...

quasi 6 anni fa | 0

| accettato

Risposto
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...

quasi 6 anni fa | 1

| accettato

Risposto
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...

quasi 6 anni fa | 1

Risposto
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...

quasi 6 anni fa | 1

| accettato

Risposto
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 ...

quasi 6 anni fa | 0

Risposto
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...

quasi 6 anni fa | 1

| accettato

Carica altro