統計
All
Feeds
質問
Size of video made using Videowriter is too high.. For 15MB input file size of output file size is 200-250MB. And quality is also reduced.
This things I have done. Input video frame size is 1280*960, so used these values. fig = figure('Visible', 'off','MenuBar','n...
9年以上 前 | 0 件の回答 | 0
0
回答質問
Size problem with VideoWriter
I have a original video of 15MB of good qaulity. When I extract frame add overlay to it and rebuild video, size becomes almost 6...
9年以上 前 | 0 件の回答 | 0
0
回答質問
How to clear getappdata setappdata variables or workspace?
How to clear getappdata setappdata variables or workspace? I am using getappdata and setappdata in callback functions, but it i...
9年以上 前 | 1 件の回答 | 0
1
回答解決済み
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...
約10年 前
解決済み
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 ...
約10年 前
解決済み
Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...
約10年 前
解決済み
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...
約10年 前
解決済み
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 ...
約10年 前
解決済み
Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...
約10年 前
解決済み
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...
約10年 前
解決済み
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.
約10年 前
解決済み
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 ...
約10年 前
解決済み
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
約10年 前
解決済み
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:...
約10年 前
