photo

Matt J


Last seen: Today Aktiv seit 2010

Followers: 16   Following: 0

Nachricht

Professional Interests: medical image processing, optimization algorithms PLEASE NOTE: I do not read email sent through my author page. Please post questions about FEX submissions in their respective Comments section.

Statistik

All
MATLAB Answers

300 Fragen
12.351 Antworten

File Exchange

39 Dateien

Cody

5 Probleme
33 Lösungen

Discussions

9 Discussions

RANG
6
of 300.863

REPUTATION
32.170

BEITRÄGE
300 Fragen
12.351 Antworten

ANTWORTZUSTIMMUNG
78.33%

ERHALTENE STIMMEN
4.280

RANG
201 of 21.100

REPUTATION
6.737

DURCHSCHNITTLICHE BEWERTUNG
4.90

BEITRÄGE
39 Dateien

DOWNLOADS
121

ALL TIME DOWNLOADS
55584

RANG
10.822
of 171.413

BEITRÄGE
5 Probleme
33 Lösungen

PUNKTESTAND
598

ANZAHL DER ABZEICHEN
7

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
9 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES
3

  • Most Accepted 2024
  • Most Accepted 2023
  • Speed Demon
  • Creator
  • Editor's Pick
  • Personal Best Downloads Level 4
  • Community Group Solver
  • Commenter
  • Promoter
  • Leader
  • Solver
  • Most Accepted 2022

Abzeichen anzeigen

Feeds

Beantwortet
How to change the size / ratio of a figure
Perhaps as follows? axis tight dx=diff(xlim); dy=diff(ylim); xmax=dy/(9/11)/2; xlim([-xmax,+xmax])

3 Tage vor | 0

Beantwortet
solving a system of linear equations where A is a 40*40 sparse matrix
You should use \. It's not just about precision, though. It's also about speed: A=sprand(400,400,0.2)+speye(400); b=rand(400,1...

3 Tage vor | 1

Beantwortet
Is the Order of Function Evaluation Guaranteed when Function Outputs are Concatenated into an an Array?
This reasoning might not be bulletproof, but I think the order of funtion calls in any expression has to always go left to right...

5 Tage vor | 0

Beantwortet
Calculating 6D Estimation (3 Translations and 3 Rotations) from Two Orthogonal Detectors Output ((X, Y, Thea, Roll)
Spreaking for myself, the provided Fig1.png does not help me understand how a 6DOF 3D pose maps to a 4DOF projected pose (X, Y, ...

5 Tage vor | 0

Beantwortet
Unable to move editor pane to rightmost column
One way is to right-click on the command window bar and select the appropriate option from "Move Command Window": ...

6 Tage vor | 0

Beantwortet
Use of matlab.apps.AppBase outside of AppDesigner
It's not clear why you would need to migrate away from them if they do what you want. If you need a deeper understanding of what...

7 Tage vor | 0

Frage


Mixing name/value pair syntax
In a Matlab seminar a few years ago, I asked why function calls that mix old style and new style name/value pair syntax would on...

7 Tage vor | 0 Antworten | 2

0

Antworten

Gesendet


arrayfun with scalar expansion
Version of arrayfun which allows argument arrays to have different sizes, so long as they are compatible for scalar expansion.

7 Tage vor | 1 Download |

0.0 / 5

Discussion


Would comma-separated list expansion for non-cell arrays be a good thing?
Frequently, I find myself doing things like the following, xyz=rand(100,3); XYZ=num2cell(xyz,1); scatter3(XYZ{:,1:3}) Bu...

8 Tage vor | 0

Frage


Would comma-separated list expansion for non-cell arrays be a good thing?
Frequently, I find myself doing things like the following xyz=rand(100,3); XYZ=num2cell(xyz,1); scatter3(XYZ{:,1:3}) But...

8 Tage vor | 0 Antworten | 0

0

Antworten

Frage


Performance of MEX versus builtin functions
When Matlab calls a MEX file, is there overhead that makes the call slower as compared to a built-in binary like min, max, etc.....

9 Tage vor | 1 Antwort | 0

1

Antwort

Beantwortet
Putting spaces between elements of a string/
A=['011001110000' '101111000000' '110100011000' '011010001100' '010101000110' '110010100010' '1000010100...

10 Tage vor | 1

Beantwortet
Implicit expansion with arrayfun (cpu vs gpu)
Remember that arrayfun (on the CPU) is nothing more than an M-Code for-loop in disguise. Therefore, it is not hard to write your...

11 Tage vor | 1

| akzeptiert

Beantwortet
Implicit expansion with arrayfun (cpu vs gpu)
I agree it is confusing, but the gpuArray version of arrayfun was never intended as a direct analgoue of the CPU version. Additi...

11 Tage vor | 1

Beantwortet
How to prevent image cropping after registration?
The problem is my fixed image only covers the top half of the head whereas I want the output to contain the whole head. But th...

13 Tage vor | 0

Frage


Adding a class-related function to appdesigner app
Is there a way, in appdesigner, to create a class-related function, i.e., a function that is local to the app's classdef file, b...

13 Tage vor | 1 Antwort | 0

1

Antwort

Beantwortet
Cut, Copy, Paste icons missing
Looks like they've been removed in R2025. However, you can easily program and install your own cut/copy/paste buttons on the Qui...

14 Tage vor | 0

Beantwortet
Adding multiple function plots to a single figure with subplots - MATLAB
This might be what you want: Manipulators={manipulator1,manipulator2,manipulator3}; m=3;n=2; %tiling dimensions %create h...

16 Tage vor | 0

Beantwortet
Construct voronoi diagram on a point cloud
Using the attached file and this FEX download https://www.mathworks.com/matlabcentral/fileexchange/30892-analyze-n-dimensional...

17 Tage vor | 0

Beantwortet
How to generate orthogonal X-ray Projection, Digitally Reconstructed Radiographs (DRR), from a particular CT volume
This is a popular Matlab compatible library, https://github.com/CERN/TIGRE/blob/master/Frontispiece/MATLAB_installation.md It...

18 Tage vor | 0

| akzeptiert

Beantwortet
How to move a 3D volume in 6D (3 Translations and 3 Rotations)
I defined a function called "applyRigidTransform3D" in code 1 and "rigidTransform6D" in code 2 for the 6D movements It shouldn'...

21 Tage vor | 0

| akzeptiert

Beantwortet
The surface I'm plotting comes out jagged and "saw teeth" like
It's a very coarsely sampled surface. There's not really any more to it. You can bicubicly upsample the data if you want a smoot...

21 Tage vor | 0

| akzeptiert

Beantwortet
How to draw line in viewer3d ?
You could use images.ui.graphics.Surface to create a very thin cylinder, could you not?

26 Tage vor | 0

| akzeptiert

Beantwortet
Inverse problem, Overdetermined, Nonlinear
You would use fsolve or, if you want specific constraints on the unknowns, e.g., bounds, you would use lsqnonlin. You could al...

27 Tage vor | 0

Beantwortet
2D-3D image registration - COMPLETE 6D ESTIMATION
I haven't read the paper, but I don't see how the proposed method would ever work as you describe it. 6D motion simply does not ...

27 Tage vor | 0

Beantwortet
Fitting to exp plus a constant
It looks like the fit was successful, but the model function is overparametrized, so there is no specific value for a (or c) tha...

28 Tage vor | 0

Beantwortet
Showing the value on the x-axis as a legend the moment the curve deviates from the x-axis
Something like this, perhaps: Hlines=plot(1:5, max(0,-2:2), 1:5, max(0,-1:3)); axis padded h=arrayfun(@addIt,Hlines); leg=l...

28 Tage vor | 0

Beantwortet
camera intrinsics calibration produces wild out-of-range principalPoint
You haven't provided data with which to repeat the calibration, so one can only guess. But if reconstruction error is low, the p...

29 Tage vor | 0

Beantwortet
How can you save a 1 by 3 array in each position of a 4D array?
I would like to only have one 4D array, with each coordinate housing a 1x3 with all 3 data points needed. Is this possible? You...

30 Tage vor | 1

| akzeptiert

Beantwortet
How to fit a set of data where one of the fitting parameters decays exponentially?
Why not just replace Γ_cav in your model equation by a parametrized exponential, e.g., Γ_cav=a*exp(b*x) where a and b are ne...

30 Tage vor | 0

Mehr laden