![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/20280348_1604919822987_DEF.jpg)
vishweshwar samba
Followers: 0 Following: 0
Statistics
RANK
5,688
of 297,046
REPUTATION
8
CONTRIBUTIONS
0 Questions
5 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 20,422
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Unable to resolve the name out.tout
Hi I have tried to reproduce your model. Please check the attached files.
2 years ago | 0
How to extract frames from a vedio file in avi format?
Try this frameNo = 10; videoReader = VideoReader('k.avi'); for i = 1:frameNo frame = readFrame(videoReader); % read th...
2 years ago | 0
| accepted
How to find the length of intersection of rows of a matrix?
Created all posssible row combinations found the overlaping and placed them in the table to compare A = [ 1 1 1 ...
2 years ago | 0
How to use xline?
Try this x = [1,2,3,4,5]; % x interval % load signal instead of data below z = linspace(0,6,100); y = exp(z); plot(z,y)...
2 years ago | 0
how to multiply a number to matrix?
I assume that the matrix 180X360X1332 (Latitude X Longitude X Time) is a multidimentional array and you want to multiply a value...
2 years ago | 0
| accepted
Solved
Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...
3 years ago
Solved
Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...
3 years ago
Solved
Calculate Amount of Cake Frosting
Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...
3 years 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:...
3 years ago