photo

Harshit


Con actividad desde 2012

Followers: 0   Following: 0

Mensaje

Estadística

All
MATLAB Answers

8 Preguntas
41 Respuestas

Cody

0 Problemas
16 Soluciones

CLASIFICACIÓN
1.245
of 300.364

REPUTACIÓN
60

CONTRIBUCIONES
8 Preguntas
41 Respuestas

ACEPTACIÓN DE RESPUESTAS
50.0%

VOTOS RECIBIDOS
4

CLASIFICACIÓN
 of 20.934

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
30.232
of 168.407

CONTRIBUCIONES
0 Problemas
16 Soluciones

PUNTUACIÓN
160

NÚMERO DE INSIGNIAS
1

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Knowledgeable Level 3
  • 3 Month Streak
  • Thankful Level 1
  • Knowledgeable Level 2
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Pregunta


Stack overflow in mex
Hi Friends, I have one confusion regarding a mex code. The code is giving me a segmentation fault. #include<math.h> #...

más de 7 años hace | 4 respuestas | 0

4

respuestas

Pregunta


Matlab Coder : Size Mismatch Issue
Hi, I am using MATLAB coder to generate mex files for the matlab. Here is one error I am getting in line x2_est_sym = x...

casi 8 años hace | 2 respuestas | 0

2

respuestas

Pregunta


MATLAB expression 'R_loc' is not of the correct complexness.
Hi, This is an issue I am getting using matlab coder. While declaring C the type I used was complex. But during run time some ...

más de 12 años hace | 0 respuestas | 0

0

respuestas

Respondida
how to covariance of 16*16 matrix
cov(matrix). See this http://www.mathworks.in/help/matlab/ref/cov.html

más de 12 años hace | 0

Respondida
Function classify in matlab
The classifiers accuracy can never be 100%. The classifiers gets trained on training set and then work on the data. Porbably you...

más de 12 años hace | 0

Respondida
How to extract pixel values in 8-bit binary format from an image?
Once you extract the pixel from image quantize it to (0,256) fixed point representation. Let the pixel be p(i,j) the output shou...

más de 12 años hace | 0

Respondida
How to plot four variables value in XY graph
use hold all after first plot.

casi 13 años hace | 0

Pregunta


MEXCallMatlab very slow. Suggest alternate
Hi, I am working on a MEX file. I am using MEXCallMatlab which is very slow to call matlab inbuilt function as well as user de...

casi 13 años hace | 1 respuesta | 0

1

respuesta

Resuelto


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

casi 13 años hace

Respondida
comparing relevant elemnts of two matrix
size((A-B)>0)

casi 13 años hace | 0

Resuelto


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

casi 13 años hace

Resuelto


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

casi 13 años hace

Resuelto


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...

casi 13 años hace

Resuelto


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

casi 13 años hace

Resuelto


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 ...

casi 13 años hace

Respondida
how to choose homogeneous blocks from image in matlab
Segment the image and pick up any region.

casi 13 años hace | 0

Resuelto


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

casi 13 años hace

Respondida
taking part of the picture
Here is an error you can't use imshow on an image. You have to first read it in a variable then use imshow on that. imshow(ROI) ...

casi 13 años hace | 0

| aceptada

Resuelto


inner product of two vectors
inner product of two vectors

casi 13 años hace

Resuelto


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

casi 13 años hace

Resuelto


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

casi 13 años hace

Resuelto


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

casi 13 años hace

Resuelto


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

casi 13 años hace

Respondida
How can I reduce the time complexity of this matlab code.. Its taking lot of time to execute when an image is fed as input.
Vectorize your code. Example you don't need inner loops you can use sum to get the value of counts. In the outer two loops you a...

casi 13 años hace | 1

| aceptada

Respondida
How can I find a number in a matrix?
http://www.mathworks.in/help/matlab/ref/find.html. see it.

casi 13 años hace | 0

| aceptada

Respondida
find the position of a specific cell entry
[truefalse, index] = ismember('USA', B)

casi 13 años hace | 0

| aceptada

Respondida
Scaling the values to specific range
D1=int16(S*32768) maps your any integer S*32768 outside the range to 32768 or for S>1 the output will be 32768(2^15) otherwise i...

casi 13 años hace | 0

| aceptada

Respondida
Converting decimal value to binary
http://www.mathworks.in/help/matlab/ref/dec2bin.html. See this. It will do 2's complement for negative numbers

casi 13 años hace | 0

| aceptada

Respondida
Multiple Dice Rolls Help
Here is what I feel will work fine % function SumDice=RollDice(NumDice,NumRolls) distribution=zeros(NumDice*6,1); for rol...

casi 13 años hace | 0

Respondida
how to see x and y cordinate in the plot beyond its end point?
HI Satish, If you dont have any information about the values beyond 5 and 25 then you have to extrapolate. Well the typ...

casi 13 años hace | 0

Cargar más