Question


Query regarding using image3Dinputlayer
I am designing a 3D CNN. I have 3D images whose first two dimenisons are height and width. The third dimesion is number of image...

mer än 3 år ago | 1 answer | 0

1

answer

Question


Problem in imwrite command
I am stuck in a piece of code. Sometimes it works absolutely fine and sometimes the same code shows error. Let me explain the en...

mer än 3 år ago | 1 answer | 0

1

answer

Question


Calling videos from a folder in every iteration
clc; clear all; close all; number=45; strng=num2str(number); Folder = 'D:\project\Fingerspelling pics\'; for k=1:length(st...

mer än 4 år ago | 1 answer | 0

1

answer

Question


Callback functions for displaying videos
I am making a GUI in Matlab using AppDesigner. It displays a video after pressing the push button. This video is already stored ...

mer än 4 år ago | 1 answer | 0

1

answer

Question


Removing blurred part in intermediate images in morphing of images.
I am working on image morphing of two hand gestures. I also got intermediate images. I am attaching here 1)Source Image 2) Targe...

mer än 4 år ago | 1 answer | 0

1

answer

Answered
AppDesigner questions: 1) Image path 2) numerical value output
For your 1st query: Select image from the component library (on the left side of App Designer) and then in the component browse...

mer än 4 år ago | 0

Question


extract key frames from video
I am writing a code having following steps to extract key frames: 1) Read frames from video (let us suppose we have 700 frames)...

mer än 4 år ago | 0 answers | 0

0

answers

Question


draw human hand using geometrical figures?
I want to draw a human hand model using matlab. Can I draw it using geometrical figures like rectangle, cylinder, circle or some...

mer än 4 år ago | 1 answer | 0

1

answer

Question


hand gesture synthesis/animation using inverse kinematics
I want to perform hand gesture synthesis or hand gesture animation using inverse kinematics or robotics toolbox. Can anyone sugg...

mer än 4 år ago | 0 answers | 0

0

answers

Solved


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

mer än 5 år ago

Solved


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

mer än 5 år ago

Question


Fibonacci Series in cody Challenge
I am solving Fibonacci series in Cody challenge. I have written the following code and it is running well in MATLAB editor. here...

mer än 5 år ago | 0 answers | 0

0

answers

Solved


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

mer än 5 år ago

Question


Problem 10 of MATLAB cody challenge
I was trying to solve this question in cody challenge: Problem 10. Determine whether a vector is monotonically increasing. I tri...

mer än 5 år ago | 3 answers | 0

3

answers

Solved


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

nästan 6 år ago

Solved


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

nästan 6 år ago

Solved


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

nästan 6 år ago

Solved


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

nästan 6 år ago

Solved


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

nästan 6 år ago

Solved


Is my wife right?
Regardless of input, output the string 'yes'.

nästan 6 år ago

Solved


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

nästan 6 år ago

Solved


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

nästan 6 år ago

Solved


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

nästan 6 år ago

Solved


Add two numbers
Given a and b, return the sum a+b in c.

nästan 6 år ago

Question


not providing a fixed input
suppose I write a code: function c=sum_of_two_numbers(a,b) a=7; b=8; c=a+b; end here I have provided values of a an...

nästan 6 år ago | 1 answer | 0

1

answer

Question


I was having problem in finding description of the function "mwltelibrary". How can I know about it??
When I used function "lteTurboEncode" and went through it's internal program I found that a function "mwltelibrary" is present ...

nästan 6 år ago | 1 answer | 0

1

answer

Question


storing values from a for loop
clc; clear all; close all; for k=-2:0.5:2 x=k; x(k)=x; end I have to store values of x from -2...

ungefär 6 år ago | 1 answer | 0

1

answer

Solved


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

mer än 6 år ago

Solved


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

mer än 6 år ago

Solved


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

mer än 6 år ago

Load more