Community Profile

photo

yonatan friedman


Last seen: 대략 3년 전 2019년부터 활동

통계

All
  • Thankful Level 2
  • Thankful Level 1
  • Solver

배지 보기

Content Feed

보기 기준

질문


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

대략 3년 전 | 답변 수: 1 | 0

1

답변

질문


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

3년 초과 전 | 답변 수: 1 | 0

1

답변

질문


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

3년 초과 전 | 답변 수: 1 | 0

1

답변

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


Shuffle
Shuffle a vector by breaking it up to segments of |n| elements, and rearranging them in a reversed order. For example, the ve...

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


Approximate the cosine function
Without using MATLAB trigonometric functions, calculate the cosine of an argument |x| to a precision of |0.0001| *Hint:* You ...

대략 4년 전

질문


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

대략 4년 전 | 답변 수: 1 | 0

1

답변

질문


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

대략 4년 전 | 답변 수: 1 | 0

1

답변

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

4년 초과 전

문제를 풀었습니다


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

4년 초과 전

문제를 풀었습니다


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

4년 초과 전

문제를 풀었습니다


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

4년 초과 전

문제를 풀었습니다


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

4년 초과 전

문제를 풀었습니다


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

4년 초과 전

질문


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

4년 초과 전 | 답변 수: 1 | 0

1

답변

질문


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

4년 초과 전 | 답변 수: 1 | 0

1

답변

문제를 풀었습니다


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

4년 초과 전

문제를 풀었습니다


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

4년 초과 전

문제를 풀었습니다


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

4년 초과 전

문제를 풀었습니다


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

4년 초과 전

문제를 풀었습니다


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

4년 초과 전

문제를 풀었습니다


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]

4년 초과 전

더 보기