photo

Kaushik


Prudential Ins Co of America

2012년부터 활동

Followers: 0   Following: 0

메시지

통계

MATLAB Answers

25 질문
0 답변

순위
13,506
of 300,756

평판
3

참여
25 질문
0 답변

답변 채택
40.0%

획득한 표
3

순위
 of 21,077

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 170,890

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Thankful Level 3

배지 보기

Feeds

보기 기준

질문


mxGetPr inside mexFunction returning null
i have a mexFunction() which i compile under visual studio. inside the mexFunction() i have sometthing like double *a = m...

12년 초과 전 | 답변 수: 1 | 0

1

답변

질문


using std::vector<double> inside mexfunction()
hi, i have the following ----myfunction.cpp------ #include<mex.h> #include<math.h> #include<matrix.h> #incl...

12년 초과 전 | 답변 수: 0 | 1

0

답변

질문


picking rows which has negative element.
hi, i have a matrix which can have negative elements. is ther eq quick and efficient way to pick the rows if any element in th...

12년 초과 전 | 답변 수: 1 | 0

1

답변

질문


throw error from a matlab compiled dll
i have a matlab function say f.m which i have compilled to a c++ dll using mcc. i want to throw error from inside f.m. question...

거의 13년 전 | 답변 수: 0 | 0

0

답변

질문


problem with nvmex compilation
hi, i have cuda toolkit 5 installed. inside matlab i can use "nvmex prog.cu" to compile a cuda program. then i installed "NV...

거의 13년 전 | 답변 수: 0 | 0

0

답변

질문


how to set cuda path
hi, i have cuda toolkit 4.2 version and toolkit 5.0 installed in my computer. in the environment variables the CUDA_PATH i...

거의 13년 전 | 답변 수: 1 | 0

1

답변

질문


debugging cuda files inside visual studio
i have a cpp function (function.cpp") which i "mex"-ed. then i open the function.cpp file in visual studio and attach visual stu...

거의 13년 전 | 답변 수: 0 | 0

0

답변

질문


counting n subsequent element of an array
say i have an array a = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; is there a easy way to add say n=3 elements at a time and form ano...

거의 13년 전 | 답변 수: 2 | 0

2

답변

질문


figuring out the index of a vector which matches certain criterion
say i have a vector x1 = [3,4,6,7,8,9]; say i have another vector x2 = [4,8]; is there a way to figure out the index where x...

거의 13년 전 | 답변 수: 1 | 0

1

답변

질문


fast way of filing up a matrix with function calls
i have a 2-D matrix m(i,j). for each (i,j) some function f(i,j) has to be evaluated and that fills up the matrix m(i,j). present...

대략 13년 전 | 답변 수: 2 | 0

2

답변

질문


smallest n such that vector(n) < a
hi, is there a efficient way that given a vector "vec" whose elements are monotonic increasing i can find the smallest index...

대략 13년 전 | 답변 수: 2 | 0

2

답변

질문


index of a mnatrix to negative
hi, i have a matrix a =1:10; so a(1) = 1 and and a(10)=10 is it possible to start indexing from say -3. so a(-3)...

대략 13년 전 | 답변 수: 2 | 0

2

답변

질문


element wise multiplication and sum
hi, i have a matirx a = [1,2,3;4,5,6]; and another matrix b=[2,2,2] i want to multiply a[i,:].*b where i=1,2 (i.e. the r...

대략 13년 전 | 답변 수: 3 | 0

3

답변

질문


how to flatten a matrix in row major order
hi , how do i flatten a matrix in row major order. thanks.

대략 13년 전 | 답변 수: 2 | 0

2

답변

질문


setting environment paths in matlab
hi, how do i setup matlab such that it looks at the paths set in the environment variable of my computer. i am running matla...

대략 13년 전 | 답변 수: 2 | 0

2

답변

질문


unable to mex a dll library to matlab code.
i have the following simple code: extern "C" __declspec(dllexport) double __cdecl MLtest(double arg1,double arg2) { ...

대략 13년 전 | 답변 수: 2 | 0

2

답변

질문


how to generate c++ static library from matlab code
hi, is it possible to generate c++ static library from matlab code. If so how. Thanks

대략 13년 전 | 답변 수: 1 | 0

1

답변

질문


how to initialize a mwArray
hi, in c++ i create an array double c_arr_a[14]; then i put values in it for(i=0;i<14;i++) { c_arr_a[i] = 0.5; ...

대략 13년 전 | 답변 수: 1 | 1

1

답변

질문


debugging a mcc compiled function.
hi, i am following the mcc example to compile a matlab function. after compiling i have a library for the simple function ...

대략 13년 전 | 답변 수: 0 | 0

0

답변

질문


mwArray crashing in c++ code
hi, i have complied a matlab function to c++ function using mcc. the resulting c++ function needs mwArray's as input. i...

대략 13년 전 | 답변 수: 2 | 0

2

답변

질문


argument structure in matlab compiled libraries.
hi, i went through the mcc example but something is not clear. can someone please clarify. In the example we have functio...

대략 13년 전 | 답변 수: 0 | 1

0

답변

질문


linking error for mwArray in c++
Hi, i have a matlab code which i have compiled with mcc as a result the matlab function is now a c++ function which has t...

대략 13년 전 | 답변 수: 1 | 0

1

답변

질문


mcc compiler unicode flag
hi, i want to use the mcc to compile a .m file to a c++ library. is there a way to specify compiler option so that the .m ...

대략 13년 전 | 답변 수: 1 | 0

1

답변

질문


how to use mexCallMATLAB with fmincon
hi, it would be kind of someone to clarify a couple of issues i am having. i am new to matlab so some please give me a det...

대략 13년 전 | 답변 수: 1 | 0

1

답변

질문


how can i compile fmincon() to produce a dll which i can eventually call from my C++ code.
how can i compile fmincon() to produce a dll which i can eventually call from my C++ code.

대략 13년 전 | 답변 수: 0 | 0

0

답변