![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/937359.jpg)
Jim Hokanson
Medical College of Wisconsin and Marquette University
I'm an assistant professor in the Joint Department of Biomedical Engineering at Marquette University and the Medical College of Wisconsin. My background is in neural engineering and my goal is to help women with pelvic floor dysfunction.
Python, C, MATLAB
Spoken Languages:
English
Pronouns:
He/him
Statistik
RANG
317
of 297.010
REPUTATION
263
BEITRÄGE
97 Fragen
71 Antworten
ANTWORTZUSTIMMUNG
52.58%
ERHALTENE STIMMEN
142
RANG
198 of 20.418
REPUTATION
6.728
DURCHSCHNITTLICHE BEWERTUNG
4.70
BEITRÄGE
6 Dateien
DOWNLOADS
344
ALL TIME DOWNLOADS
60743
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
how do I change the default open behavior to not be a class property
How do I change the default behavior in the MATLAB editor so that selecting text and opening it (selecting "open") doesn't go th...
10 Tage vor | 1 Antwort | 0
1
AntwortFrage
How does MATLAB resolve a function handle with multiple levels of indexing
Imagine that I have classes class1 and class2 and that class2 has a property parent that points to an instance of class1. Class1...
etwa 2 Monate vor | 1 Antwort | 1
1
AntwortFrage
too many outputs for ginput - documentation error?
I would like to get only the x-coordinates for ginput. I was surprised to discover that ginput returns X and Y coordinates when ...
etwa 2 Monate vor | 1 Antwort | 0
1
AntwortFrage
How to permanently hide the toolbar for an axes even after replotting
I've done a lot of searching and I can't seem to find a way to disable showing the axes toolbar. There are some options that wor...
5 Monate vor | 1 Antwort | 0
1
AntwortHow can I import live data from labchart into Matlab?
The Labchart server code I wrote can do this but it relies on Windows drivers. The streaming bit is also a bit messy because to ...
11 Monate vor | 1
How to fix table display/alignment in command window
It appears that the table display algorithm assumes monospaced fonts. Changing the "Dekstop Text Font" (Home tab => Preferences ...
11 Monate vor | 1
| akzeptiert
Frage
How to fix table display/alignment in command window
MATLAB seems to format printing of tables poorly on macs. Here's a simple example using 2023b on my M1 mac: dt = datetime('now...
11 Monate vor | 1 Antwort | 0
1
AntwortHow can I import python libraries inside a python script that am calling from Matlab?
Was just working on some Python/MATLAB things and saw this question. The issue is that you are making a system call that is comp...
etwa 2 Jahre vor | 1
Frage
error in prctile function?
I'm creating my own percentile function and wanted to compare it to the prctile function available in MATLAB. I am pretty sure ...
etwa 2 Jahre vor | 1 Antwort | 0
1
Antwortenable context menu for specific cell or item in uitable or uilistbox in matlab
Edit: For R2023b and newer the solution by Jasmine (see answer below) is the way to go ----------------------------------------...
fast 3 Jahre vor | 0
| akzeptiert
Frage
enable context menu for specific cell or item in uitable or uilistbox in matlab
This is a cross posting from: https://stackoverflow.com/questions/70468931/enable-context-menu-for-specific-cell-or-item-in-uit...
fast 3 Jahre vor | 2 Antworten | 0
2
Antwortenkeep focus in command window
You could also create a function that does what you want. In response to Walter's answer, I don't want to always work at avoidin...
mehr als 4 Jahre vor | 0
How to remove single quotes around the string
Since I stumbled across this when looking at ways of copying variables, specifically cell arrays of strings, from Matlab into Ex...
fast 5 Jahre vor | 2
Hide/Disable 'File' menu in Matlab figure window
Here's what I needed: h = findall(gcf, 'Tag', 'figMenuFile') set(h,'visible','off') All the other menus appear to be tagged i...
fast 5 Jahre vor | 0
Error in fmincon: undefined getIpOptions
I had this problem and just reinstalled the optimizaton toolbox ...
etwa 5 Jahre vor | 3
Frage
waiting for current folder viewer to expand
I'm writing some code to expand the current folder viewer and I've found that expanding the folders, equivalent to clicking on t...
mehr als 5 Jahre vor | 0 Antworten | 0
0
Antwortenfunction signature for package function
So apparently there were two issues. First, these json files must be placed in the same folder that gets added to the path. So...
fast 6 Jahre vor | 1
| akzeptiert
Frage
function signature for package function
Well I just hit "cancel" instead of "submit" so here's a short version :/ I can't get functionSignatures.json to work for the f...
fast 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
trouble reading ordinal categorical variable with missing value using readtable
I am trying to read an Excel file that has an empty cell for a categorical ordered column. For example something like {0 5 [] 3 ...
etwa 6 Jahre vor | 1 Antwort | 0
1
AntwortRefresh legend from the command line
I've found hiding and showing the legend works. ax = gca; %might be different ... legend(ax,'hide'); legend(ax,'show');
etwa 6 Jahre vor | 0
Frage
error removing subplot listeners manager
After plotting some subplots I start to move around the axes (change position values). Normally this works fine but I'm running ...
etwa 6 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
getpixelposition vs OuterPosition of figure
I'm getting different values from getpixelposition and the OuterPosition of the figure ... get(gcf,'OuterPosition') ans = ...
etwa 6 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
thread safety of mx mex functions
Although I'm aware that mx mex functions are generally considered not to be thread safe, it is unclear to me if this applies to ...
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortDeploying a standalone application to computer with no install privileges
I ended up switching to Octave for this project. Octave can be run without installation. The zip download is about 400 MB which ...
mehr als 6 Jahre vor | 1
Frage
Deploying a standalone application to computer with no install privileges
I wrote a simple GUI which I was planning on placing in a standalone application to be run on a computer without Matlab. I inclu...
mehr als 6 Jahre vor | 2 Antworten | 0
2
AntwortenBest way to locate shared (.dylib) libraries used by MATLAB mex files on MacOS X
I've had some luck with the following command in the same directory as my mex file. install_name_tool -change /Users/jim/Do...
fast 7 Jahre vor | 2
queue addlistener events or place event on EDT
I found a different solution which appears to work nicely: <https://undocumentedmatlab.com/blog/matlab-and-the-event-dispatch-t...
etwa 7 Jahre vor | 0
| akzeptiert
Frage
Get start time of a daq session
I'm wondering if it is possible to get the time at which the DAQ starts so that I can keep track of other code events, relative ...
etwa 7 Jahre vor | 1 Antwort | 0
1
Antwortis it possible to retrieve command window output of parallel worker
Presumably you could use this when run in the worker ... <https://www.mathworks.com/matlabcentral/fileexchange/31438-command-wi...
etwa 7 Jahre vor | 0
Error is a warning in parfeval function
So, it appears the issue was not with the worker but in the client. After some debugging I tried this instead: function han...
etwa 7 Jahre vor | 2