Vinai Datta Thatiparthi - MATLAB Central
photo

Vinai Datta Thatiparthi

Last seen: mehr als ein Jahr vor Aktiv seit 2019

Followers: 0   Following: 0

Nachricht

Statistik

All
CodyMATLAB AnswersFrom 02/19 to 03/25Use left and right arrows to move selectionFrom 02/19Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 Fragen
122 Antworten

Cody

0 Probleme
176 Lösungen

RANG
496
of 297.503

REPUTATION
158

BEITRÄGE
0 Fragen
122 Antworten

ANTWORTZUSTIMMUNG
0.00%

ERHALTENE STIMMEN
18

RANG
 of 20.449

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG
1.117
of 159.017

BEITRÄGE
0 Probleme
176 Lösungen

PUNKTESTAND
2.006

ANZAHL DER ABZEICHEN
6

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Knowledgeable Level 4
  • 3 Month Streak
  • Revival Level 1
  • First Answer
  • CUP Challenge Master
  • Community Group Solver
  • Introduction to MATLAB Master
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
Replacing cell values based on reference file
Hi Abin, .."I will need to replace the cell values to '0' based on the reference matrix"... From your description, it's uncl...

etwa 4 Jahre vor | 0

Beantwortet
stereo camera calibration error
Hi, I noticed a similar discussion on the forum that could be relevant to solving the error that you're reporting: LINK to M...

etwa 4 Jahre vor | 0

Beantwortet
When I try to run program it shows "Unrecognized function or variable 'loadcase'."
Hi Ashwin, "loadcase" doesn't appear to be a MATLAB functionality. On line# 5, MATLAB isn't able to catch the definition of "l...

etwa 4 Jahre vor | 0

Beantwortet
pixel size of the image in matlab different from that of original pixel size
Hi Sai, The image that you've shared on the community, I've also noticed that it's size is 500x500x3. Even in the properties o...

etwa 4 Jahre vor | 0

Gelöst


Calculate a Damped Sinusoid
The equation of a damped sinusoid can be written as |y = A.ⅇ^(-λt)*cos(2πft)| where |A|, |λ|, and |f| ...

mehr als 4 Jahre vor

Gelöst


Calculate Inner Product
Given two input matrices, |x| and |y|, check if their inner dimensions match. * If they match, create an output variable |z|...

mehr als 4 Jahre vor

Gelöst


Rescale Scores
Each column (except last) of matrix |X| contains students' scores in a course assignment or a test. The last column has a weight...

mehr als 4 Jahre vor

Gelöst


Split a string into chunks of specified length
Given a string and a vector of integers, break the string into chunks whose lengths are given by the elements of the vector. Ex...

mehr als 4 Jahre vor

Gelöst


Natural numbers in string form
Create a cell array of strings containing the first n natural numbers. _Slightly_ harder than it seems like it should be. Ex...

mehr als 4 Jahre vor

Gelöst


String Array Basics, Part 1: Convert Cell Array to String Array; No Missing Values
<http://www.mathworks.com/help/matlab/characters-and-strings.html String array> and cell array are two types of containers for s...

mehr als 4 Jahre vor

Gelöst


Convert a Cell Array into an Array
Given a square cell array: x = {'01', '56'; '234', '789'}; return a single character array: y = '0123456789'

mehr als 4 Jahre vor

Gelöst


Convert a numerical matrix into a cell array of strings
Given a numerical matrix, output a *cell array of string*. For example: if input = 1:3 output is {'1','2','3'} whic...

mehr als 4 Jahre vor

Gelöst


Cell Counting: How Many Draws?
You are given a cell array containing information about a number of soccer games. Each cell contains one of the following: * ...

mehr als 4 Jahre vor

Gelöst


Fix the last element of a cell array
Note: this is lifted directly from <http://www.mathworks.com/matlabcentral/answers/82825-puzzler-for-a-monday Puzzler for a Mond...

mehr als 4 Jahre vor

Gelöst


Remove element(s) from cell array
You can easily remove an element (or a column in any dimension) from a normal matrix, but assigning that value (or range) empty....

mehr als 4 Jahre vor

Gelöst


Create a cell array out of a struct
Create a cell array out of a (single) struct with the fieldname in the first column and the value in the second column: in: ...

mehr als 4 Jahre vor

Gelöst


Find the Best Hotels
Given three input variables: * |hotels| - a list of hotel names * |ratings| - their ratings in a city * |cutoff| - the rat...

mehr als 4 Jahre vor

Gelöst


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

mehr als 4 Jahre vor

Gelöst


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

mehr als 4 Jahre vor

Gelöst


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

mehr als 4 Jahre vor

Beantwortet
matlab 2016a 업데이트 오류
Hi, These MATLAB Answers links may be of help to you: MATLAB Answer on "Installation stuck at 99%" MATLAB Answer on "MATLAB ...

mehr als 4 Jahre vor | 0

Beantwortet
Coarsening a 2D or 3D grid in Matlab
Hi Sai, "..each pixel in the new array is an average of 3x3 pixels in the old array.." Use the conv2 function: inputData =...

mehr als 4 Jahre vor | 0

Beantwortet
Adding legend to geoglobe with several geoplot3 lines
Hey Julian, MATLAB at present does not support adding legends to geoglobe. I noticed that this request was already brought to ...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
Save scatter3 plot as u3d or other rotatable figure suitable for pdf
Hey, Have a look at this MATLAB Answer. Hope this helps!

mehr als 4 Jahre vor | 0

Beantwortet
Still having installation problems.
Hey Fred, Have a look at these other MATLAB Answers posted on the community: MATLAB Answer by Staff MATLAB Answer on Install...

mehr als 4 Jahre vor | 0

Beantwortet
스케일 된 값으로 이미지 저장을 하려면 어떻게 해야하나요?
Hey, Use the imagesc function to display an image with scaled colors. data = rand(20); imagesc(data,'CDataMapping','scaled')...

mehr als 4 Jahre vor | 0

Beantwortet
I am trying to interpolate data from a data set. each data point depends on two variables. I wish to interpolate data inbetween them but not sure which function to use.
Hey Tania, Since you have 2 independent variables, the scenario that you describe seems to be a curve-fitting problem. Based o...

mehr als 4 Jahre vor | 0

Beantwortet
Seven segment LED display
Hey! "Allow the user to enter an integer..." and "...user to exit the program.." Use the input function to request input fro...

mehr als 4 Jahre vor | 1

Beantwortet
The interpretation of the error
Hey Zeynab, Since you haven't shared the code with us, I guess the main reason why you're getting the error is because of a re...

mehr als 4 Jahre vor | 0

Beantwortet
Classificaiton Learner App: shortens variable names?
Hey Sam, The variable name that can be seen in the snapshot you provided does not seem to be a valid variable name in MATLAB. ...

mehr als 4 Jahre vor | 0

Mehr laden