photo

Markus Leuthold


Sonova AG

Last seen: 7 días hace Con actividad desde 2012

Followers: 0   Following: 0

Mensaje

Estadística

All
MATLAB Answers

12 Preguntas
9 Respuestas

File Exchange

1 Archivo

Cody

0 Problemas
3 Soluciones

CLASIFICACIÓN
2.321
of 298.594

REPUTACIÓN
28

CONTRIBUCIONES
12 Preguntas
9 Respuestas

ACEPTACIÓN DE RESPUESTAS
16.67%

VOTOS RECIBIDOS
14

CLASIFICACIÓN
18.947 of 20.621

REPUTACIÓN
1

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
1 Archivo

DESCARGAS
3

ALL TIME DESCARGAS
11

CLASIFICACIÓN
59.842
of 161.780

CONTRIBUCIONES
0 Problemas
3 Soluciones

PUNTUACIÓN
50

NÚMERO DE INSIGNIAS
2

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • First Submission
  • GitHub Submissions Level 1
  • Thankful Level 2
  • Leader
  • First Review
  • 3 Month Streak
  • Thankful Level 1
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Pregunta


mex cplusplus matlab::data::RowMajorIterator
This is an example of iterating through a matrix in Matlab's default column-major setup void operator()(matlab::mex::ArgumentLi...

alrededor de 2 meses hace | 1 respuesta | 0

1

respuesta

Enviada


Orbit3d
3d orbiting camera control for Matlab uiaxes

más de 1 año hace | 3 descargas |

0.0 / 5

Respondida
How can I make a mock method return different answers?
Example from Invoke function handle when method is called - MATLAB - MathWorks Switzerland (implemented in R2018b) testCase = m...

casi 2 años hace | 0

Respondida
Is there a simpler way to create an empty Table with a list of VariableNames?
Mathworks, please allow tbl = table("VariableNames", ["var1" "var2"....]); and avoid ugly hacks like array2table(zeros(0... o...

alrededor de 2 años hace | 3

Respondida
Arguments function: Name-value arguments in default values
Same with this code, which I expect to work, but it fails with the same error message arguments opts.A = mustBeMember(opts...

alrededor de 2 años hace | 0

Pregunta


How to create an uifigure with gcf
I'm looking for an gcf() equivalent for the new web-based uifigure(). Or in other words, I'm looking for this function: If no u...

casi 3 años hace | 2 respuestas | 1

2

respuestas

Resuelto


Query every vertices neighbor indices
Input T is a <https://fr.mathworks.com/help/matlab/ref/triangulation.html triangulation>. The purpose of this function is to ...

más de 5 años hace

Pregunta


Create a mock with defined behavior on different subsequent method calls
Assume a mocked class testCase = matlab.mock.TestCase.forInteractiveUse; [mock, behavior] = createMock(testCase, "AddedMethods...

casi 6 años hace | 1 respuesta | 0

1

respuesta

Pregunta


assign class object to array
Assume the following class classdef A < handle methods function obj = A disp('constructor called') ...

casi 6 años hace | 1 respuesta | 0

1

respuesta

Respondida
How do I use live script (*.mlx) files in source control?
This is going into a completely wrong direction. Source code files must be text files. The toolchain does not only consist of Ma...

alrededor de 6 años hace | 6

Pregunta


unit test mocking framework: verify a method was called in a sequence
I want to verify that a method was called twice with inputs to be verified I want to make sure that cls.myfunc('first') cls....

alrededor de 6 años hace | 1 respuesta | 0

1

respuesta

Resuelto


Create a row array using double colon operator
Create a row array from 9 to 1, using the double colon operator.

más de 8 años hace

Pregunta


compare anonymous function handles
The following comparison of two function handles should return true in my opinion f1=@(x,y)(x*y) f2=@(x,y)(x*y) isequ...

alrededor de 9 años hace | 2 respuestas | 0

2

respuestas

Pregunta


listener on graphics property 'BeingDeleted'
How do I add a listener to a graphics object being deleted? It seems like 'BeingDeleted' is set to 'on' during deletion. Further...

más de 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


calling java base64 constructor with arguments
I want to convert a character array into a Base64 stream using java. The class org.apache.commons.codec.binary.Base64 ...

más de 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


how to display a hggroup in plotbrowser
How do I make a hggroup show up in the plotbrowser? hg = hggroup; hg.Annotation.LegendInformation.IconDisplayStyle='on'; ...

más de 9 años hace | 0 respuestas | 1

0

respuestas

Respondida
comparing two tables or datasets
table1=table(....) table2=table(....) %comparison s1=table2struct(table1) s2=table2struct(table2) if isequa...

casi 10 años hace | 0

Pregunta


nargout with class method handles
Assume you have the following class classdef MyClass methods function fcn(~) end end ...

alrededor de 10 años hace | 1 respuesta | 0

1

respuesta

Respondida
How can I use NARGIN/NARGOUT to determine the number of input/output arguments of an object method?
It's almost five years later and this bug still exists. Any news from Mathworks on how to handle this situation in 2015? Exam...

alrededor de 10 años hace | 1

Respondida
Modifying an immutable/protected variable of a subclass in a superclass method
While I agree that the initial code breaks encapsulation and is not best-practise, the code should still work in my opinion. The...

alrededor de 10 años hace | 0

Resuelto


Handle to an array of functions
Given a cell array of functions that operate on scalars, it is required to return a function handle to process a vector of value...

más de 10 años hace

Respondida
Determine if using HG2
For any handle returned by a plot command, isa(h,'handle') returns true if HG2 is used, false otherwise. The command doe...

más de 10 años hace | 0

Pregunta


transform struct into different representation
how do I transform a into b such that a.x(idx)==b(idx).x Example a.x=[1 2] a.y=[3 4] into b(1).x=1 ...

casi 11 años hace | 0 respuestas | 0

0

respuestas

Pregunta


unexpected value for nargout when returning a class/struct
What values for nargout would you expect for the last two lines in the run block: 0 or 1? Class A classdef A < handle ...

casi 11 años hace | 1 respuesta | 2

1

respuesta

Respondida
How can I write .NET event in C# and attach a matlab callabk to them
Hi Amir the handling of .NET events in Matlab is indeed really strange. They are only fired under certain conditions, which d...

más de 12 años hace | 0