Community Profile

photo

sjhstone


Last seen: 5 maanden ago Active since 2019

Followers: 0   Following: 0

Statistics

All
  • Knowledgeable Level 1
  • Revival Level 2
  • Solver
  • Thankful Level 1
  • First Answer

View badges

Feeds

View by

Answered
MEX: How to modify xml file for unsupported compiler?
Hello, if you just want to modify how $CROOT variable is captured, please search for <locationFinder> in your XML config file, a...

ongeveer 3 jaar ago | 3

| accepted

Solved


Convert a Cell Array into an Array
Given a square cell array: x = {'01', '56'; '234', '789'}; return a single character array: y = '0123456789'

meer dan 3 jaar ago

Solved


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

meer dan 3 jaar ago

Solved


Create a vector
Create a vector from 0 to n by intervals of 2.

meer dan 3 jaar ago

Question


Code Generation: What's the Best Practice?
Hello, I'm writing a code for comparing multiple numerical optimization algorithms using multiple combination of parameter choi...

meer dan 3 jaar ago | 1 answer | 0

1

answer

Answered
How to move function code to a new file
As your function just scales a picture, there is really no need to put it into a live function. There are 2 simpler ways of defi...

meer dan 3 jaar ago | 0

Answered
Update a sparse matrix efficiently
You can refer to the following blog post. It seems that you have reached the optimal efficiency. https://blogs.mathworks.com/lo...

meer dan 3 jaar ago | 1

Answered
Mex OpenMP C code
Both printf and mexPrintf are not thread-safe and should be avoided in multi-thread OpenMP MEX C codes. You can get more inform...

meer dan 3 jaar ago | 0

Question


Can MEX BLAS library be used for native double matrix in C?
I'm writing C MEX file to do vector-matrix multiplication, clear clc mex simpledgemv.c -R2017b -lmwblas mex simpledgemv_n...

meer dan 4 jaar ago | 1 answer | 0

1

answer

Answered
Mex-files + Visual studio 2013 + openMP cause Matlab crashes
Under Windows, it is not that difficult to use Intel's OpenMP library with Microsoft Visual C++ Compiler. Try use the following...

ongeveer 5 jaar ago | 0