photo

Matthias


Harvard University

Actif depuis 2012

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

19 Questions
5 Réponses

Cody

0 Problèmes
8 Solutions

RANG
3 048
of 300 756

RÉPUTATION
20

CONTRIBUTIONS
19 Questions
5 Réponses

ACCEPTATION DE VOS RÉPONSES
26.32%

VOTES REÇUS
17

RANG
 of 21 077

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
44 587
of 170 890

CONTRIBUTIONS
0 Problèmes
8 Solutions

SCORE
90

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • First Review
  • First Answer
  • Thankful Level 3
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
Building mym on 64-bit Windows 7
Thanks. I got it to work, but had to remove the COMPFLAGS="$COMPFLAGS /MT" So the overall command: mex -v -I"C:\Pr...

plus de 8 ans il y a | 0

Réponse apportée
Is there a way (command line switch) to prevent execution of startup.m when starting a new Matlab instance?
Thanks for your answers! What I meant with "self-contained" is that the suppression of startup.m-execution would only apply to i...

environ 9 ans il y a | 0

Question


Is there a way (command line switch) to prevent execution of startup.m when starting a new Matlab instance?
Is there a way (command line switch) to prevent execution of startup.m when starting a new Matlab instance? How about the same f...

environ 9 ans il y a | 5 réponses | 1

5

réponses

Question


PID controller design: How to plot control signal?
I'm using the Control System Toolbox in Matlab. I have a plant P (an object of class idproc) and a PID controller C (class pi...

plus de 9 ans il y a | 1 réponse | 0

1

réponse

Question


Which workspace do Live Scripts use?
Hi, I'm just starting to use Live Scripts, but I don't understand how they interact with the base workspace of Matlab. I c...

plus de 9 ans il y a | 1 réponse | 0

0

réponse

Question


imref2d axis direction
Hello, I'm trying to use imref2d to map an image onto world coordinates. Be default, imref2d seems to consider the top-lef...

presque 10 ans il y a | 1 réponse | 0

1

réponse

Question


Why is tab completion broken for my struct?
Hi, I wrote a class with a struct as one of the properties. For that particular struct, tab completion does not work, i.e. wh...

plus de 10 ans il y a | 1 réponse | 0

1

réponse

A résolu


Is my wife right?
Regardless of input, output the string 'yes'.

plus de 10 ans il y a

Question


Why is batch() so slow?
I'm trying to use batch() to load some data from a slow disk in the background, but it is extremely slow. See code example with ...

environ 11 ans il y a | 1 réponse | 1

1

réponse

Question


Parfeval memory leak? Clear memory on parallel workers?
Hi, I have some sort of memory leak when using parfeval. I have a function that starts a number of parfeval-computations ...

environ 11 ans il y a | 1 réponse | 3

1

réponse

Question


Code organziation during exploratory data analysis?
Hello, I'm interested in how you organize your code for exploratory/preliminary work with complex datasets. Imagine a case wh...

environ 11 ans il y a | 1 réponse | 1

0

réponse

Réponse apportée
Memory management when using GPU in parfor-loop?
I have now partially solved the problem by using spmd instead of parfor. This way, I can manually slice my variables. However, t...

environ 11 ans il y a | 1

Question


Memory management when using GPU in parfor-loop?
Hi, I have a machine with four CPU-cores and one GPU. In my code, there's a parfor loop which performs computations on GPUarr...

environ 11 ans il y a | 2 réponses | 2

2

réponses

Question


DAQ: Output of sample clock to PFI terminal does not work.
I have a National Instruments 6221 board and am using the session-based interface of the Data Acquisition Toolbox. I would li...

plus de 11 ans il y a | 1 réponse | 0

0

réponse

Réponse apportée
Get data from callback without global variable?
Any ideas? Are globals the way to go here?

plus de 11 ans il y a | 0

Question


Get data from callback without global variable?
Hi, I want to continuously acquire data in the background using the Data Acquisition Toolbox as described <http://www.mathwor...

plus de 11 ans il y a | 1 réponse | 0

1

réponse

Question


Re-install the Java JRE that ships with Matlab?
When I recently updated Java on my PC, the Java-installer asked me if I want to un-install old and "unsecure" versions of Java. ...

plus de 11 ans il y a | 1 réponse | 0

0

réponse

Question


Force timeout for save()?
Hi, I'm using save() to save a workspace variable on a network share. Sometimes, the share is temporarily unavailable. How ca...

presque 12 ans il y a | 1 réponse | 1

1

réponse

Question


How to "dbup" to ORIGINAL error after try/catch and rethrow?
Hi, When I debug my code, I use "dbstop if error" to inspect the workspace of the function that created an error. Now, if ...

presque 12 ans il y a | 3 réponses | 2

3

réponses

Question


Can I have multiple rows of editor tabs to show all my open files?
Hi, I use the editor tab bar on the top of my editor window to navigate the files that I'm currently working on. I always hav...

environ 12 ans il y a | 4 réponses | 4

4

réponses

A résolu


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

environ 12 ans il y a

A résolu


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

environ 12 ans il y a

A résolu


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

environ 12 ans il y a

A résolu


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

environ 12 ans il y a

A résolu


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

environ 12 ans il y a

A résolu


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

environ 12 ans il y a

A résolu


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

environ 12 ans il y a

Question


Get data from DAQ background session
Hi! I am recording analog data using the session-based interface of the data acquisition toolbox as described in the document...

environ 12 ans il y a | 1 réponse | 0

0

réponse

Question


set(0, 'DefaultAxesBox', 'off') is not honored by plot()!?
Hello, I am trying to set up Matlab such that plots look presentable by default. For this, I want to switch off the mirror...

plus de 12 ans il y a | 3 réponses | 1

3

réponses

Question


Cannot add digital I/O channels although device supports it...
Hi, I'm using a NiDAQ PCI 6722. This device supports digital I/O and I verified this using NI software. However, when I st...

presque 13 ans il y a | 1 réponse | 0

1

réponse

Charger plus