Patrick Mboma
Followers: 0 Following: 0
Statistik
RANG
4.394
of 295.467
REPUTATION
12
BEITRÄGE
48 Fragen
5 Antworten
ANTWORTZUSTIMMUNG
62.5%
ERHALTENE STIMMEN
10
RANG
of 20.234
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 153.912
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
Problem with parfor loop due to some variable that cannot be classified.
I am unable to specify a parfor loop that works due to some variable that matlab cannot classify I tried to implement the follo...
mehr als ein Jahr vor | 1 Antwort | 0
1
AntwortFrage
Why doesn't Matlab call the overloaded subsref method?
Hi, I have a class in which I have overloaded both subsref (and subasgn) for some constructed object obj, I am able to sucessf...
fast 2 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
manipulation of yearly, quarterly, monthly, weekly and daily dates using datenum
I would like to create a function that translates some specific date formats into date numbers and a function that reverses the...
fast 2 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Number of unique coordinates in an array
Dear all, I am trying to solve the following problem as fast as possible. Consider a square matrix with coordinates (i,j) where...
mehr als 2 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Fastest way to compute a multiplication of matrices times a sequence of kronecker products
I would like to compute the following operation o=f*(kron(a0,a1,a1,a1,a1)+kron(a1,a0,a1,a1,a1)+kron(a1,a1,a0,a1,a1)+kron(a1,a1,...
mehr als 2 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Why is this sparse multiplication failing?
Hi, Why does Matlab run out of memory on the multiplication of these two sparse matrices? The first one is of size 1724987...
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortIs it possible to write several statements into an anonymous function?
I asked this question 5 years ago and it is still active today. I had almost forgotten that I did ask such a question, which led...
mehr als 7 Jahre vor | 2
Frage
From a string to function handle of a function handle
Hi, Is it possible to transform a string into a function handle calling another function handle? More specifically, consid...
mehr als 7 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
anonymous function for if-else statements
Hi, Is it possible to write an anonymous function or a function handle that replicates the behavior of if-else statements? ...
mehr als 7 Jahre vor | 4 Antworten | 0
4
AntwortenFrage
How do I create a legend that is "disconnected" from the plotted items
Dear all, I have the following problem. I would like to plot various items that can take two colors, say red and blue. The colo...
mehr als 7 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
condition in regular expression
Hi, I would like to match a regular expression, which can take two forms: aaa1(-1)&abcd or bbb2&aefdg More ...
fast 8 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
Is it advisable to have a handle object inside a handle object?
Hi, I would like to create two classes, say, class1 and class2 both of which inherit from the handle class. Therefore I have ...
fast 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Retrieving/storing the state of a handle
Hi, Is it possible to retrieve the old state of a modified handle object? more concretely, suppose a have a class such as ...
etwa 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
why is 1+ nan*1i = NaN + NaNi ?
Dear all, I am trying to figure out how to store some information using complex numbers and retrieving that information later...
fast 9 Jahre vor | 2 Antworten | 1
2
AntwortenFrage
custom-defined syntax highlighting for non-matlab files
Hi, Many text editors allow users to define their own list of keywords for files with unknown extensions. This list is then p...
etwa 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Is it possible to programmatically add a file extension for syntax highlighting?
Hi, Is it possible to programmatically add a file extension for syntax highlighting? Just for the sake of argument, suppo...
etwa 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to get rid of the hanging popup display in debug mode?
Hi all, One of the frustrations I have sometimes had with Matlab is the fact that while it is convenient to be able to see th...
etwa 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to capture an optional expression using regular expressions?
Dear all, I would like to use regular expressions to capture and transform expressions of the form name or name...
etwa 9 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
How to capture tokens using regular expressions?
Dear all, I would like to capture two parts of a sequence of strings. I would like to call the first part "main" and the second...
etwa 9 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
Help for inherited method
Hi, I have the following problem. I have two classes, say second_class and first_class, where second_class<first_class i.e. s...
etwa 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Getting help for a function from another function
Dear all, suppose I want to get help from a function. I can simply type h=help('myfunction). But then suppose that I have ano...
etwa 9 Jahre vor | 3 Antworten | 1
3
AntwortenFrage
function with unknown number of outputs within parfor
Dear all, I am facing this apparently simple problem: I am trying to write a parfor loop that containts a function call with ...
mehr als 9 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
How to define new methods on existing matlab classes?
Hi, I would like to define, for my own use, new methods for some matlab classes such as cell, struct, among others. for ins...
mehr als 9 Jahre vor | 3 Antworten | 0
3
AntwortenFrage
Can this be accelerated?
Hi, The following computations are very expensive for large matrices A, B and the coefficient q. C=reshape(A,a1*q,b1)*B;...
mehr als 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How large can a sparse matrix be?
Hi, I thought I could exploit the fact that a matrix is sparse to build a big matrix. I would like to build a sparse matrix o...
mehr als 9 Jahre vor | 1 Antwort | 1
1
AntwortFrage
str2func and anonymous functions
Dear all, I posed a problem earlier and it was not answered. I guess I did not pose the problem well. I try again as my unde...
mehr als 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Strange behavior of anonymous functions
Dear all, I have two problems related to anonymous functions: 1-) I create an anonymous function taking several inputs ins...
mehr als 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
problem with overloaded plot in 2014b
Dear all, I am facing a problem I have not seen before. I have overloaded the plot function for a certain class. Up until 201...
fast 10 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
Help on regular expressions
Hi all, I would like to extract parts of a string. In particular, I would like to extract all elements between two limits LI...
fast 10 Jahre vor | 1 Antwort | 0
1
AntwortFrage
workspace of anonymized/memoized subfunctions and nested functions
Dear all, Is there any way to have control over the variables entering the workspace of an anonymous function? I have been ex...
etwa 10 Jahre vor | 1 Antwort | 0