Réponse apportée
random generator on level of bytes
Generate random integers and then multiply them by 8 to guarantee that the result is divisible by 8. E.g., something like: max_...

environ 7 ans il y a | 3

| A accepté

Réponse apportée
Calculate sum of series using for
Here is an outline to get you started: a = something; % you put a value here m = something; % you put a value here x = someth...

environ 7 ans il y a | 1

| A accepté

Réponse apportée
Decimal to Binary Conversion
E.g., bstream = reshape(b',1,[]); If you want characters, then bstream = char(reshape(b',1,[]) + '0');

environ 7 ans il y a | 1

| A accepté

Réponse apportée
How to output a vector/array from a created function
Don't use size(inputVector) for your loop indexing limits since this is a vector. Use numel(inputVector) instead. Also, you sho...

environ 7 ans il y a | 0

Réponse apportée
Cpp to Mex conversion
Looks like you have a mismatch with variable types, probably an older piece of code that you are trying to compile on a newer MA...

environ 7 ans il y a | 1

| A accepté

A soumis


mxGetPropertyPtr & mxSetPropertySDC C-mex functions
Fast memory efficient alternative to API functions mxGetProperty & mxSetProperty.

environ 7 ans il y a | 1063 téléchargements |

4.5 / 5

Réponse apportée
how to solve 'Error using | Matrix dimensions must agree. ' ?
Maybe this line: while (Lia2_One_Three ~= zeros(length(Lia2_One_Three),1) | Lia2_Two_Three ~= zeros(length(Lia2_Two_Three),1)...

environ 7 ans il y a | 0

| A accepté

Réponse apportée
Print from C file into Command window via MexFile
"However I would like to print directly from the c-file to Matlab Command Window. Is that possible?" Yes, that is what mexPrint...

environ 7 ans il y a | 1

| A accepté

Réponse apportée
could anyone help me to solve the issue with respect to the code
The syntax of a for-loop is: for k=1:5 % your code here end

environ 7 ans il y a | 0

Réponse apportée
Subtracting matrices using a for loop
diff(your_data,1,3)

environ 7 ans il y a | 0

Réponse apportée
How can I see the filter function implementation code at MATLAB?
In general, if the function has an associated .m file then TMW is willing to show you that much. Also there may be information ...

environ 7 ans il y a | 1

Réponse apportée
If else problem for year
All of those if-elseif blocks make the code difficult to read, and difficult to debug as well. I would advise against that appr...

environ 7 ans il y a | 2

| A accepté

Réponse apportée
Please how can I store all my matrix?
Maybe use a cell array: channel{i} = [importdata(location)]; Then at the end you can work with the individual matrices as chan...

environ 7 ans il y a | 1

| A accepté

Réponse apportée
Fast Elementwise Matrix-Multiplications
The element-wise times operation in MATLAB is already multi-threaded. You are not going to beat it by writing your own low leve...

environ 7 ans il y a | 1

Réponse apportée
Defining velocity over particular time frame
You don't need a loop for the velocity. Assuming I understand that you want the velocity to be linear, you just need a vector t...

environ 7 ans il y a | 0

| A accepté

Réponse apportée
Converting C++ bits packed int** to MATLAB unisgned char mxArray using mex?
Some issues: 1) The signature of mxCreateNumericArray according to the doc is: mxArray *mxCreateNumericArray(mwSize ndim, cons...

environ 7 ans il y a | 0

| A accepté

Réponse apportée
Find an optimal solution for a linear system with two inequations
The way you have this problem posed, and assuming by "binary" you mean integer, it can be solved by simple inspection. The max ...

environ 7 ans il y a | 0

Réponse apportée
How to formulate the random matrix between real interval?
See the second example in the rand doc here, and use your endpoints of 0.10 and 0.50 instead of the example endpoints of -5 and ...

environ 7 ans il y a | 0

| A accepté

Réponse apportée
Complex matrix inversion using LAPACK in MEX
I took your code and modified it to be a mex routine that takes a 2D double complex input (caution: no argument checking done!) ...

environ 7 ans il y a | 0

Réponse apportée
how to reshape this matrix
result = reshape(A.',2,[]).'

environ 7 ans il y a | 0

| A accepté

Réponse apportée
Simulation of irrational numbers
The random number generators that come with MATLAB have very long periods. You can simply use them to form your ratio and it wi...

environ 7 ans il y a | 0

Réponse apportée
Printing out the element values in a mxDouble array (C++ script in Matab)
%d is a decimal integer format for use with short, int, long, etc. This doesn't work with floating point. Try e.g. %f or %g inst...

environ 7 ans il y a | 0

| A accepté

Réponse apportée
Runge-Kutta function
Here is some code to get you started. It receives a string from the user for a derivative function of x and t and turns it into...

environ 7 ans il y a | 1

Réponse apportée
for loop continued fraction
Yes, you can use the formula x(n) = 1 + 1/x(n-1) if you want to use a loop. Just start with x(1) = 1.

environ 7 ans il y a | 0

Réponse apportée
How to sum up multiple vectors, element by element, to recieve one final value?
The numerator is just a simple dot product between two vectors, and the denominator is just a simple sum. Using the fact that a...

environ 7 ans il y a | 1

Réponse apportée
Creating a 2D random walk
In this logic, you will never get to the y branches because one of the first two x branches will always be true: if p_x<0.6 ...

environ 7 ans il y a | 0

Réponse apportée
Is Walter Roberson a real person, or is he some kind of Matlab AI robot?
Blade Runner 2019 ...

environ 7 ans il y a | 1

Réponse apportée
single precision simulation of internal calculations
" Is there a way to set Matlab to perform all calculations (even internal) to single precision? " Not the way you are probably ...

environ 7 ans il y a | 0

| A accepté

Réponse apportée
How do i convert this for loop into a while loop?
This for loop: for i=1:n % stuff end is equivalent to this while loop: i = 1; while i <= n % stuff i = i + 1...

environ 7 ans il y a | 1

| A accepté

Réponse apportée
How can I vertically concatenate cells?
I don't have much of a clue what you really need, but maybe this will give you a start on the MATLAB cell array syntax (with the...

environ 7 ans il y a | 0

Charger plus