
Sven
University of Michigan
Aussie living in the US. Engineering with MATLAB. Some Interests: -3D Volume Processing (CT, mri) -Finite Element Analysis (human body simulation) -Geometry Analysis (human body morphomics) Professional Interests: Image processing, Finite Element Analysis, Human Body Biomechanics
Estadísticas
CLASIFICACIÓN
116
of 284.387
REPUTACIÓN
1.037
CONTRIBUCIONES
18 Preguntas
205 Respuestas
ACEPTACIÓN DE RESPUESTAS
55.56%
VOTOS RECIBIDOS
258
CLASIFICACIÓN
171 of 19.202
REPUTACIÓN
7.332
EVALUACIÓN MEDIA
4.80
CONTRIBUCIONES
17 Archivos
DESCARGAS
304
ALL TIME DESCARGAS
61641
CLASIFICACIÓN
1.165
of 137.148
CONTRIBUCIONES
1 Problema
168 Soluciones
PUNTUACIÓN
1.755
NÚMERO DE INSIGNIAS
4
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Content Feed
Is there any function similar to 'clabel' to use in 3D graphics (contourslice)?
A 3D spatial domain generates a 3D isosurface (rather than a 2D isocontour). Here is some code to generate/display such a surfa...
8 meses hace | 0
Pregunta
Cascading sort order that restarts count at each subsequent column
I'm trying to sort a table by multiple columns (easy) and obtain a specialized sort order (not-so-easy). Rather than a sortInde...
más de 1 año hace | 1 respuesta | 0
1
respuestaEnviada
biasspace
Generates a vector of non-linearly spaced vector with custom bias in the spacing between points
casi 2 años hace | 1 descarga |

Pregunta
Delete axes interactions not working?
I'm using 2021a and it seems that deleting/disabling interactions isn't working as expected. I'm just trying to either (1) make ...
más de 2 años hace | 1 respuesta | 1
1
respuestaResuelto
Split a string into chunks of specified length
Given a string and a vector of integers, break the string into chunks whose lengths are given by the elements of the vector. Ex...
alrededor de 3 años hace
Enviada
stlwrite - write ASCII or Binary STL files
Export a variety of inputs (patch, surface) to an STL triangular mesh
más de 5 años hace | 175 descargas |

ftlim multiple regression with interaction term
It's a few years late but I think I've discovered the bug that may have been your problem (or at least generates a similar error...
más de 5 años hace | 0
Resuelto
Find the nearest prime number
Happy 5th birthday, Cody! Since 5 is a prime number, let's have some fun looking for other prime numbers. Given a positive in...
alrededor de 6 años hace
Resuelto
I Plead the Fifth
Write a function to provide a yes or no answer to the input string. However, it must plead the 5th amendment (return an empty st...
alrededor de 6 años hace
Resuelto
Spot the First Occurrence of 5
This problem series invites you to solve two simple problems related to the integer NUMBER FIVE, in order to celebrate <https://...
alrededor de 6 años hace
Resuelto
5 Prime Numbers
Your function will be given lower and upper integer bounds. Your task is to return a vector containing the first five prime numb...
alrededor de 6 años hace
Resuelto
Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock.
Submit your answer to this problem a multiple of 5 seconds after the hour. Your answer is irrelevant; the only thing that matte...
alrededor de 6 años hace
Resuelto
Is it really a 5?
A number containing at least one five will be passed to your function, which must return true or false depending upon whether th...
alrededor de 6 años hace
Resuelto
How to subtract?
* Imagine you need to subtract a few numbers using MATLAB. * You will not be using eval for this task. * Given two ASCII strin...
alrededor de 6 años hace
Resuelto
When Was That Goal Scored?
We want to find out when the goals were scored in a particular soccer game. For each game, we are given a "Goal Event Data" XML ...
casi 7 años hace
Resuelto
Circle area using pi
Given a circle's radius, compute the circle's area. Use the built-in mathematical constant pi.
más de 7 años hace
FaceAlpha of bar3 plot smaller than 1 ruins rest of the plot
Hi Sven, We don't have your data (and we don't even know which of your variables are matrices, which are vectors etc.), so we...
más de 7 años hace | 0
how to make cropping for image ?
Hi Eliz, try this: % Read your original image Img1 = imread('http://www.mathworks.com/matlabcentral/answers/uploaded_fil...
más de 7 años hace | 1
how to compare cell arrays of different lengths?
We can start with your input a = int64(1:3)'; out = num2cell(a); b = int64(1:4)'; out2 =num2cell(b); We will pr...
más de 7 años hace | 1
| aceptada
how to save all value of centoid of many object from one image ?
The centroid is not a scalar value. It has two components (X coordinate, Y coordinate), so you cannot assign it to a scalar vari...
más de 7 años hace | 0
Pregunta
Save using -append behaves differently when replacing objects vs replacing arrays
Hi all, I'm trying to save some variables to a .mat file, appending to that file if the variable is new, overwriting if it's ...
casi 8 años hace | 1 respuesta | 1
1
respuestaEnviada
inpolyhedron - are points inside a triangulated volume?
Test if 3d points are inside a mesh. Or, voxelise a mask from a surface. Mesh can be non-convex too!
alrededor de 8 años hace | 45 descargas |

Pregunta
Indexing via 3d array changed behaviour 2015a -> 2015b?
Hi all, just got 2015b, here's a strange one where indexing via a multidimensional array has a differently shaped output to prev...
alrededor de 8 años hace | 1 respuesta | 2
1
respuestaEnviada
upsert(conn,tableName,fieldNames,keyFields,data, varargin)
If a data row already exists, UPDATE that row! If it doesn't exist, INSERT that row!
alrededor de 8 años hace | 1 descarga |

Convert image into Patches of size 64*64 and get each patch
Hi Tahir, try this: I = imread('rice.png'); imSz = size(I); patchSz = [64 64]; xIdxs = [1:patchSz(2):imSz(2) imSz(...
más de 8 años hace | 2
| aceptada
Enviada
mpoly2mask - convert multiple polygons to a mask
Converts an object with multiple boundary contours to a logical mask
más de 8 años hace | 2 descargas |

Overlapping region of a single ROI is excluded by the mask
Hi Alessandro, When you say that you _"want to draw a closed ring shape with a single line"_, we might step-by-step reinterpr...
más de 8 años hace | 0
Find strings that contain multiple substrings at the same time
Hi Sven, Here's how I would do it. It uses a call to *regexp* (you could also use *strsplit*) and one *cellfun*. The good thi...
más de 8 años hace | 0
How can I replace a loop with arrayfun - problems with strrep
Hi Sven (congrats on the name), Here's a pretty direct way to do what you're trying to do. It uses regexp once and cellfun on...
más de 8 años hace | 0
| aceptada