A résolu


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<https://i.imgu...

plus de 2 ans il y a

A résolu


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

plus de 2 ans il y a

A résolu


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

plus de 2 ans il y a

A résolu


Return area of square
Side of square=input=a Area=output=b

plus de 2 ans il y a

Question


How to vectorize nested for loops
I am making a matrix B that represents a halve sphere in grayscale values. This means grayscale ~ height (so 0 = black = bottom ...

plus de 2 ans il y a | 1 réponse | 0

1

réponse

A répondu
How to find percentage of white pixels in a binary image?
Hi You could simply use nnz(A), which gives the number of non-zero elements in the matrix A, and numel(A), which gives the to...

presque 3 ans il y a | 0

| A accepté

A répondu
Converting coordinates (x,y) and radius (r) from pixels to mm using a calibrated camera intrinsic and extrinsic parameters
You can obtain the dpi of your image from the imfinfo structure dpi = imfinfo(filepath).XResolution %analogous for YResolution ...

environ 3 ans il y a | 0

A répondu
How to create a line from a curve in a log scale x-axis
If your question is how to plot a log scale, please use set(gca, 'XScale', 'log') %make X axis logarithmic

environ 3 ans il y a | 0

A répondu
I want to store text data on edit field when I press button on app designer Matlab
For your first question, create a Callback function for that button. I assume you have somewhere an input field where the desire...

environ 3 ans il y a | 1

| A accepté

A répondu
Prime number sum from cell array
There are a few issues. I wouldn't change characters to NaN but rather to an empty cell. After your cellfun and filter1, myArr...

environ 3 ans il y a | 1

| A accepté

A répondu
how to take the derivative of the function saved from curve fitting tool
If you have the values of your fitted curve saved, you can calculate the first derivative by using the gradient function: https:...

environ 3 ans il y a | 0

A résolu


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

environ 3 ans il y a

A résolu


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

environ 3 ans il y a

A résolu


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

environ 3 ans il y a

A résolu


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

environ 3 ans il y a

A résolu


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

environ 3 ans il y a

A résolu


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

environ 3 ans il y a

A résolu


Find max
Find the maximum value of a given vector or matrix.

environ 3 ans il y a

A résolu


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

environ 3 ans il y a

A résolu


Inner product of two vectors
Find the inner product of two vectors.

environ 3 ans il y a

A résolu


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

environ 3 ans il y a

A résolu


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

environ 3 ans il y a

A résolu


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

environ 3 ans il y a

A résolu


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

environ 3 ans il y a

A résolu


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

environ 3 ans il y a

A résolu


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

environ 3 ans il y a

A résolu


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

environ 3 ans il y a

A répondu
how to sort object properties at workspace window?
Just type app.property, e.g. app.Button3 to see that value.

environ 3 ans il y a | 0

A répondu
How I can perform a canny edge detection on this image ? It can be used for hand gesture recognition in real time or is just for images
Please refer to https://nl.mathworks.com/help/images/edge-detection.html for loading an image & running an edge detection algori...

environ 3 ans il y a | 0

| A accepté

A répondu
ERROR SELECTING MULTIPLE FILES
The moment you select multiple files, file becomes a cell array. Just run this in your command window and select a few files to...

environ 3 ans il y a | 0

| A accepté

Charger plus