
Sean de Wolski
MathWorks
I like to be outside. But if I'm inside, I like to be using MATLAB.
I'm a Senior Application Engineer at MathWorks and civil/structural engineer by education.
Statistics
9 Files
Cody Blogs892 Posts
RANK
20
of 257,955
REPUTATION
11,441
CONTRIBUTIONS
14 Questions
4,801 Answers
ANSWER ACCEPTANCE
78.57%
VOTES RECEIVED
2,199
RANK
3,370 of 17,779
REPUTATION
415
AVERAGE RATING
5.00
CONTRIBUTIONS
9 Files
DOWNLOADS
15
ALL TIME DOWNLOADS
3715
CONTRIBUTIONS
892 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
How can I avoid errors related to a datatip when deleting a figure?
Not sure why you're parenting to [], that doesn't make sense. Just delete the figure with your MWE works fine. (Still probably...
2 days ago | 0
Create tables based on partial match in variable names in other table
Convert your cellstrs to strings string(t.Properties.VariableNames) Then you can use any of the easy string matching functions...
16 days ago | 0
Help with code, writematrix not working. Please help fix
which -all writematrix which -all mpower
17 days ago | 0
How do I pass by reference, a structure to a function (an .m file) in an argument list?
Author a simple handle class that has the structure as a property classdef referenceStruct < handle properties S s...
19 days ago | 0
| accepted
How do I pass an object into a timer callback function?
Pass cam in with an anonymous function when you create the timer cam = camera t = timer(TimerFcn=@(~,~)checkFinished(cam)) ...
25 days ago | 0
| accepted
Show viscircles results in App Designer
Specify the app UIAxes as the first input a = uiaxes; % replace with you app.UIAxes imshow('coins.png',Parent=a) [centers,rad...
25 days ago | 0
Extracting xyzpoints from Point Cloud
The location is the xyz points and it's 2d, not 3d like how you're indexing it. points3d = ptCloud.Location.'; Would give you...
29 days ago | 1
| accepted
Creating tables on MS Word
This is exactly what the MATLAB Report Generator does really well. Look at the sections on tables and images, here: https://ww...
30 days ago | 0
How to publish as pdf from command tab
Open the function and go to the publish tab in the toolstrip. From there, click the dropdown under the publish icon for settings...
30 days ago | 1
Is it a good idea to overload subsref to mimic MATLAB's griddedInterpolant behavior?
Personally, i.e. not speaking for my corporate overlords, I don't like this design pattern. I prefer a well-named "evaluate" me...
2 months ago | 1
How to fix auto-reflow issues?
In 21b you can remove autoreflow from the Canvas Tab>Convert. They named the feature to remove it after me because I was in the...
3 months ago | 0
| accepted
Why Matlab does not see Python?
Looks like you have 32-bit python. You need 64-bit Python.
3 months ago | 0
Convert python numpy 2D array to matlab 2D array
What is the underlying python class of your ndarray? It doesn't seem to be recognized by double. Here, I create it with int8 a...
3 months ago | 1
Using function of newer MATLAB version in older version
Sounds like you might be looking for wrapTo360 et al. in Mapping Toolbox: https://www.mathworks.com/help/releases/R2021b/map/re...
3 months ago | 0
Create Text Box in PowerPoint file
All you have to do is set X/Y/Width/Height properties of the TextBox presentation element. See this example that does exactly w...
3 months ago | 0
Call a MATLAB function from .NET program
https://www.mathworks.com/help/releases/R2021b/matlab/matlab_external/call-matlab-function-from-c-client.html
4 months ago | 0
Generating an STL of a paraboloid surface made out of hexagons
1) yes 2) Look at stlwrite and triangulation.
4 months ago | 1
surf indices reversed?
I think you're seeing the difference between meshgrid and ndgrid. Meshgrid is used for plotting, ndgrid for matrix/tensor work ...
5 months ago | 1
Sending input() from Python API
This works if you start the MATLAB engine with the desktop: import matlab.engine eng = matlab.engine.start_matlab('-desktop'...
5 months ago | 0
How can I iterate across the opposite diagonal?
full(flip(gallery('tridiag', 8, 4, 6, 4), 2))
5 months ago | 0
How Can I create a function as a string
function grade=mygrade(grade) arguments grade(1,1) string = input('Write the grade:';'s') end grade = lo...
5 months ago | 0
how to change back to the right base for answers?
Or just call format short
5 months ago | 0
Run Python script with numpy and pandas in Matlab
The python that MATLAB is calling apparently does not have numpy installed properly. Check your system path for the version of ...
5 months ago | 0
Python Matlab engine - Cannot read simulink output
Extract the simout to a timetable, then pass the timetable back to python either via writing to disk as a CSV, or converting to ...
6 months ago | 0
Convert Python list Type to MATLAB double
q = py.list({1,2,3}) cq = cell(q) [cq{:}]
6 months ago | 0
Display image using HTML within app designer does not work
One way to do this is to explicitly base64 encode the image data. Here's an example for PNG file, you'd have to change the HTML...
6 months ago | 0
| accepted
Create table in a for loop with text
Confused as to why you're using excel ranges with csv input. Either way, this should be doable in one shot with readall(datasto...
6 months ago | 0
Integration using Cumtrapz backwards instead of forwards
Easy solution is to just flip everything L_dist =[10 9 8 7 6 5 4 3 2 1 0]; locations=[0 1 2 3 4 5 6 7 8 9 10]; shear.z = fl...
6 months ago | 0
| accepted