yonatan friedman
Followers: 0 Following: 0
Estadística
0 Problemas
41 Soluciones
CLASIFICACIÓN
129.701
of 295.486
REPUTACIÓN
0
CONTRIBUCIONES
10 Preguntas
1 Respuesta
ACEPTACIÓN DE RESPUESTAS
20.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.236
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
11.913
of 153.912
CONTRIBUCIONES
0 Problemas
41 Soluciones
PUNTUACIÓN
420
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
Pregunta
bug in the function
What do I need to write in f2 (u1, u2) so that I do not have the error : Undefined function or variable 'ETA'.
casi 4 años hace | 1 respuesta | 0
1
respuestaPregunta
i want to put n and counter in one matrix
for n=4:50 a=[]; e = ones(n,1); A1 = spdiags([-e 0*e -e 4*e -e 0*e -e],-3:3,n,n); full(A1); A=full(A1); b=zeros(n,1); b(...
casi 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Bisection method, Numerical analysis
y=@(x) ((x+1)^2)*(exp(x^2-2)-1); a=0; b=1; m=(a+b)/2; while abs(y(m))<0.01 disp(m) if y(a)*y(m)<0 b=m; elseif y(...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaResuelto
Implement simple rotation cypher
If given a letter from the set: [abc...xyz] and a shift, implement a shift cypher. Example: 'abc' with a shi...
casi 5 años hace
Resuelto
Capitilize the first letter of every word in a string
For a given input string, capitalize every letter at the beginning of a word, and transform the rest of the letters to lower-cas...
casi 5 años hace
Resuelto
Generate a string like abbcccddddeeeee
This is the string version of Problem 1035. <http://www.mathworks.com/matlabcentral/cody/problems/1035-generate-a-vector-like-1-...
casi 5 años hace
Resuelto
letter yes yes & letter no no
Split a string into two strings, wherein the first string has all alphabetic letters and the second string has all the remaining...
casi 5 años hace
Resuelto
Shuffle
Shuffle a vector by breaking it up to segments of |n| elements, and rearranging them in a reversed order. For example, the ve...
casi 5 años hace
Resuelto
Vector pop
Take |n| elements from the end of the vector |v| and return both the shorten vector |v| and the |n| elements in a separate vecto...
casi 5 años hace
Resuelto
Vector push
Append an element |x| to the end of the vector |v| and return both the extended vector and the new number of its elements. |x| c...
casi 5 años hace
Resuelto
Separate even from odd numbers in a vector - without loops
*Without using loops*, rearrange a vector of integers such that the odd numbers appear at the beginning, and even numbers at the...
casi 5 años hace
Resuelto
Separate even from odd numbers in a vector - with a loop
*Using a loop*, rearrange a vector of integers such that the odd numbers appear at the beginning, and even numbers at the end. T...
casi 5 años hace
Resuelto
Approximate the cosine function
Without using MATLAB trigonometric functions, calculate the cosine of an argument |x| to a precision of |0.0001| *Hint:* You ...
casi 5 años hace
Pregunta
fprintf and \n (pyramid of numbers)
clc; clear; n = 6; j = []; for i = 1 : n for j = i:n fprintf('%d',i:j) fprintf('\n') end end ~~...
casi 5 años hace | 1 respuesta | 0
1
respuestaPregunta
counting rows after fprintf
function printPythagoras(n) n = 15; for i = 3:n for j = 4:n for k = 5:n if i^2 + j^2 == k^2 && i<j...
casi 5 años hace | 1 respuesta | 0
1
respuestaResuelto
How many unique Pythagorean triples?
For a given integer |n|, return all <https://en.wikipedia.org/wiki/Pythagorean_triple Pythagorean triples> that inlude numbers s...
casi 5 años hace
Resuelto
Find the starting index of a consecutive condition
Given a logical vector |v|, and a positive integer |n|, return the smallest index |i| that satisfies: all( v(i : i+n-1) ) =...
casi 5 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:...
casi 5 años hace
Resuelto
Pattern matching
Given a matrix, m-by-n, find all the rows that have the same "increase, decrease, or stay same" pattern going across the columns...
casi 5 años hace
Resuelto
Making change
Given an amount of currency, return a vector of this form: [100 50 20 10 5 2 1 0.5 0.25 0.1 0.05 0.01] Example: Input a = ...
casi 5 años hace
Resuelto
Product of Each Column
Given a matrix |mat| with |n| columns, return a row vector |v| of length |n|, where every element in |v| is the product of the |...
casi 5 años hace
Resuelto
Diagonal Pattern
For a positive integer |n|, return an |nXn| matrix |mat| such that the value of each element in row |i| and column |j| is given ...
casi 5 años hace
Pregunta
strings become numbers and get in to the matrix
i have a matrice [1 0 -1 -1 2 -1 1 1 0 -1 -1 2 -1 1 1 -1 0 ...
casi 5 años hace | 1 respuesta | 0
1
respuestaPregunta
exchange problems to 0.xyz (after the dot)
making change problem I need to exchange my money to "little-money" in this form : [0.5 , 0.25 , 0.1 , 0.05 , 0.01] I have : ...
casi 5 años hace | 1 respuesta | 0
1
respuestaResuelto
Tax Calculator
Calculate the tax for a given income. 10% tax is paid for any income up to $2,000. 20% tax is paid for additional income u...
casi 5 años hace
Resuelto
Remove the air bubbles from a vector
_*A reduced version of Problem 112*_ Given a column vector v, return a vector w in which all the zeros have "bubbled" to the ...
casi 5 años hace
Resuelto
Add a vector to a matrix
Given a matrix |mat| of size |mXn| and a row vector |v| of size |1Xs|, return a matrix with |m+1| rows that conatains |mat| over...
casi 5 años hace
Resuelto
Eye Squared
For a positive integer |n| create the identity matrix with |n| elements. In case it is not possible to produce an identity ma...
casi 5 años hace
Resuelto
Given a matrix A (size m x n) create a matrix B which consists of matrix A sorted in descending order by columns and then by rows.
--------------- A= [ 2 6 -3 7 12 0 -12 5 1] --------------- B= [12 7 1 6 2 0 5 -3 ...
casi 5 años hace
Resuelto
Given a matrix A (size m x n) create a matrix B (size m+2 x n+2) which consists of matrix A surrounded by zeros. See Example below:
A = [1 2 3 4 5 6] ----------- B = [0 0 0 0 0 0 1 2 3 0 0 4 5 6 0 0 0 0 0 0]
casi 5 años hace