![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/4441181_1522102224971_DEF.jpg)
Michal Dudek
Followers: 0 Following: 0
MATLAB
Spoken Languages:
English
Estadística
5 Preguntas
0 Respuestas
0 Problemas
32 Soluciones
CLASIFICACIÓN
108.955
of 297.016
REPUTACIÓN
0
CONTRIBUCIONES
5 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
100.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.419
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
17.246
of 157.725
CONTRIBUCIONES
0 Problemas
32 Soluciones
PUNTUACIÓN
290
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
imhist and histogram giving different results
I'm trying to obtain a histogram of a 1-D signal (type double in the range 0-1). I've tried using two functions - imhist and his...
más de 2 años hace | 2 respuestas | 0
2
respuestasPregunta
inputdlg displays dialog box in the second screen
After updating Matlab from 2020a to 2020b (Windows 10 21H1) I found out that inpudlg function diplays dialog box in the second s...
más de 3 años hace | 1 respuesta | 0
1
respuestaResuelto
Energy of a photon
Given the frequency F of a photon in giga hertz. Find energy E of this photon in giga electron volts. Assume h, Planck's ...
más de 7 años hace
Resuelto
How to subtract?
* Imagine you need to subtract one number from another using MATLAB. * You will not be using eval for this task. * Given two A...
más de 7 años hace
Resuelto
Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...
más de 8 años hace
Resuelto
Circle area using pi
Given a circle's radius, compute the circle's area. Use the built-in mathematical constant pi.
más de 8 años hace
Resuelto
Pizza value using expression with parentheses
Pizza prices are typically listed by diameter, rather than the more relevant feature of area. Compute a pizza's value (cost per ...
más de 8 años hace
Resuelto
Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...
más de 8 años hace
Resuelto
Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...
más de 8 años hace
Pregunta
Interpolation of empty area in the image
I would like to interpolate values of empty places (value == 0) in my image (as shown below) without changing the values in othe...
casi 9 años hace | 1 respuesta | 0
1
respuestaResuelto
Create a row array using double colon operator
Create a row array from 9 to 1, using the double colon operator.
más de 9 años hace
Resuelto
Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...
más de 9 años hace
Resuelto
Distance walked 1D
Suppose you go from position 7 to 10 to 6 to 4. Then you have walked 9 units of distance, since 7 to 10 is 3 units, 10 to 6 is 4...
más de 9 años hace
Pregunta
Is it possible to create 24-bit gif in Matlab?
I would like to create 24-bit animated gif from figure. Is it even possible in Matlab? Below part of my code: current_fr...
más de 9 años hace | 2 respuestas | 0
2
respuestasPregunta
Dummy input for videoinput
Is there a possibility to create something like a "dummy input" for Image Acquisition? What I want is to create a video input...
más de 9 años hace | 1 respuesta | 0
1
respuestaResuelto
Make one big string out of two smaller strings
If you have two small strings, like 'a' and 'b', return them put together like 'ab'. 'a' and 'b' => 'ab' For extra ...
más de 11 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...
más de 11 años hace
Resuelto
Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...
más de 11 años hace
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...
más de 11 años hace
Resuelto
Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...
más de 11 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.
más de 11 años hace
Resuelto
Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...
más de 11 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...
más de 11 años hace
Resuelto
Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...
más de 11 años hace
Resuelto
radius of a spherical planet
you just measured its surface area, that is the input.
más de 11 años hace
Resuelto
Bottles of beer
Given an input number representing the number of bottles of beer on the wall, output how many are left if you take one down and ...
más de 11 años hace
Resuelto
Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...
más de 11 años hace
Resuelto
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
más de 11 años hace
Resuelto
Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...
más de 11 años hace