Community Profile

photo

Jim Hokanson


Duke University

Last seen: 3일 전 2009년부터 활동

통계

All
  • Thankful Level 4
  • 6 Month Streak
  • Speed Demon
  • Commenter
  • Personal Best Downloads Level 4
  • First Review
  • 5-Star Galaxy Level 5
  • GitHub Submissions Level 2
  • First Submission
  • Revival Level 2
  • Knowledgeable Level 2
  • First Answer

배지 보기

Content Feed

보기 기준

답변 있음
How 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 ...

27일 전 | 0

답변 있음
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 ...

27일 전 | 1

| 수락됨

질문


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

27일 전 | 답변 수: 1 | 0

1

답변

문제를 풀었습니다


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

8개월 전

문제를 풀었습니다


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

8개월 전

문제를 풀었습니다


Determine if Input is Oddish or Evenish (Odd/Even Sum of Digits)
Given a positive integer n, determine whether n is "oddish" or "evenish" - that is, whether the sum of the digits of n is odd or...

8개월 전

문제를 풀었습니다


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

8개월 전

답변 있음
How 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...

1년 초과 전 | 1

질문


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

1년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
enable context menu for specific cell or item in uitable or uilistbox in matlab
Here's a solution with left click. Couldn't get right to work. More info at linked StackOverflow page above. Code copied here: ...

대략 2년 전 | 0

| 수락됨

질문


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

대략 2년 전 | 답변 수: 2 | 0

2

답변

제출됨


JimHokanson/plotBig_Matlab
Plots large amounts of line data fast. Supports x as datetime and duration arrays. Also supports timetables. Supports NaNs in da...

2년 초과 전 | 다운로드 수: 3 |

Thumbnail

제출됨


TDMS Reader
Read TDMS files v1 & v2 without DLL

3년 초과 전 | 다운로드 수: 201 |

답변 있음
keep 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...

거의 4년 전 | 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...

거의 4년 전 | 1

답변 있음
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...

거의 4년 전 | 0

제출됨


ADInstruments (LabChart) SDK
Read LabChart .adicht files with Matlab

대략 4년 전 | 다운로드 수: 50 |

답변 있음
Error in fmincon: undefined getIpOptions
I had this problem and just reinstalled the optimizaton toolbox ...

4년 초과 전 | 3

질문


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

4년 초과 전 | 답변 수: 0 | 0

0

답변

답변 있음
function 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...

대략 5년 전 | 1

| 수락됨

질문


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

대략 5년 전 | 답변 수: 1 | 0

1

답변

문제를 풀었습니다


Array GCD
* Find Greatest Common Divisor in a given array * Function Template: function ans = arraygcd(a) % a=[45 15 200 ...

대략 5년 전

질문


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

5년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
Refresh 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');

5년 초과 전 | 0

질문


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

5년 초과 전 | 답변 수: 0 | 0

0

답변

질문


getpixelposition vs OuterPosition of figure
I'm getting different values from getpixelposition and the OuterPosition of the figure ... get(gcf,'OuterPosition') ans = ...

5년 초과 전 | 답변 수: 2 | 0

2

답변

질문


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

5년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
Deploying 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 ...

거의 6년 전 | 1

질문


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

거의 6년 전 | 답변 수: 2 | 0

2

답변

답변 있음
Best 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...

대략 6년 전 | 2

더 보기