Shivani Dixit
Followers: 0 Following: 0
Estadística
0 Preguntas
10 Respuestas
0 Problemas
6 Soluciones
CLASIFICACIÓN
3.614
of 295.448
REPUTACIÓN
14
CONTRIBUCIONES
0 Preguntas
10 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
1
CLASIFICACIÓN
of 20.227
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
46.011
of 153.872
CONTRIBUCIONES
0 Problemas
6 Soluciones
PUNTUACIÓN
71
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Problem in loop in programme
As per the problem encountered , if you are using it in a loop in a program, the iterating variable 'i' would take up the value ...
más de 3 años hace | 0
array concatenation problem in matlab
Assuming any inbuilt function should not be used, you can add up one array to other by the following method : % assume this to ...
más de 3 años hace | 0
| aceptada
Resuelto
Counting Money
Add the numbers given in the cell array of strings. The strings represent amounts of money using this notation: $99,999.99. E...
más de 3 años hace
Resuelto
Find the alphabetic word product
If the input string s is a word like 'hello', then the output word product p is a number based on the correspondence a=1, b=2, ....
más de 3 años hace
Store numbers in an array from user input
In the above given code it is also possible to form the array while taking the input from the user. Also in the below code giv...
más de 3 años hace | 0
Index in position 1 exceeds array bounds (must not exceed 1)
The above problem of "Index in position 1 exceeds array bounds (must not exceed 1)" arises when we try to access rows/columns wh...
más de 3 años hace | 0
Writing sums with a loop?
MATLAB provides you with and easy to understand document that you can take advantage of. The functions that the above mentioned ...
más de 3 años hace | 0
I am creating a vector but its throwing some error. Example I create vector a= [3.4 -4.90 0.23], and when I access it a[1] it gives error.
In MATLAB, we access the elements of an array using paranthesis () and not square brackets [ ]. You can see an example below : ...
más de 3 años hace | 0
| aceptada
Indexing in for loop
Assuming you are using MATLAB, the indexing begins from 1. An example for for loop is explained below: arr = [1 2 3 4 ] % assu...
más de 3 años hace | 0
| aceptada
loop
With reference to selecting elements from a matrix ':' refers to selecting the elements from starting index to ending index. In...
más de 3 años hace | 0
How to calculate a max value in a array without the built in functions.
You can use for loop or while loop for finding out the maximum or minimum element in the array without using any built-in functi...
más de 3 años hace | 1
loop over a list of numbers
For looping over each element of an array or list , you can use for loop or while loop according to convenience. Simply using a ...
más de 3 años hace | 0
Resuelto
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...
más de 3 años hace
Resuelto
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...
más de 3 años hace
Resuelto
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...
más de 3 años hace
Resuelto
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:...
más de 3 años hace