Community Profile

photo

Harel Harel Shattenstein


Bar Ilan

Last seen: 3년 초과 전 2015년부터 활동

Followers: 0   Following: 0

연락

통계

  • Thankful Level 3

배지 보기

Feeds

보기 기준

질문


Estimated Objective Function Value
When trying an SVM we can get a graph of the objective function The z axis is the Estimated Objective Function Value, what are ...

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

0

답변

질문


Plot high dimensional Matrix
I have a matrix with 5 columns, 4 are for values and 1 is the catgory. For example: 4 grades and a category passed/did not pass...

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

1

답변

질문


Linprog of max LP
For Runing the code: % Linprog defined on min problem and Ax<=b for max problem take - objectiveFunction %% The problem ob...

거의 5년 전 | 답변 수: 0 | 0

0

답변

질문


Plot functions and intersections
Hi, I am trying to plot a feasble area of a LP problem: Max z=2*x1+2*x2 s.t 2*x1+x2 <= 16 3*x1+2*x2 <=25 2*x1+3*x2 <=25 ...

거의 5년 전 | 답변 수: 1 | 0

1

답변

질문


Random Test Dataset With More Values Of One Type
I have a set with y values of 0 or 1. most of my data has 0 value, so when splitting the data to train and test 80 -20 respecti...

거의 5년 전 | 답변 수: 1 | 0

1

답변

질문


Linear Programming With geq constraints
I have the following problem: Max z=4x_1+3x_2 s.t Is the following code is correct? as it is geq and not leq: z = [-...

대략 5년 전 | 답변 수: 2 | 0

2

답변

질문


Open a function as GUI
how can I open the application as a GUI, calling the function works only as a function and does not open any window like imtool ...

5년 초과 전 | 답변 수: 0 | 0

0

답변

질문


Canny Edge Detection, non-maximum suppression
I am trying to implant Canny Edge Detection algorithm. I started first with decomposing it using matlab functions. function ...

5년 초과 전 | 답변 수: 0 | 0

0

답변

질문


Multiple functions in one file
When writing a function with few subfunctions, should would write function [output]=subfunction1 (input) under the main function...

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

1

답변

질문


What Is the third value when reading an image
When using imread() we get a matrix of the size [r,c,x] what does x stand for?

5년 초과 전 | 답변 수: 2 | 0

2

답변

질문


Running On matrix by diagonals
I am looking for an algorithm that can collect the elements of a matrix in the following way <</matlabcentral/answers/uploade...

거의 6년 전 | 답변 수: 1 | 0

1

답변

질문


Finding min point of a second derivative function
<</matlabcentral/answers/uploaded_files/124440/Screen%20Shot%202018-07-08%20at%2015.57.03.png>> What I have done is: f=@...

거의 6년 전 | 답변 수: 1 | 0

1

답변

질문


Error Using Function Fplot
T=[-20:20:120] mu=[4 0.38 0.095 0.032 0.015 0.0078 0.0045 0.0032] function []=ex4(T,mu) A=[ones(length(T),1) ...

거의 6년 전 | 답변 수: 1 | 0

1

답변

질문


Find zeros in interval
I try to find a solution for <</matlabcentral/answers/uploaded_files/124217/Screen%20Shot%202018-07-06%20at%2011.33.56.png>>...

거의 6년 전 | 답변 수: 2 | 0

2

답변

질문


Ploting a function and its roots
f=@(x)x.^2-5*sin(x); [p1,p2]=fzero(f,1,[-1,3]) fplot(f1,[-1,3]) Can I "draw" the roots p1,p2 in the same function...

거의 6년 전 | 답변 수: 1 | 0

1

답변

질문


recursive permutation algorithm in matlab
I am trying to write a simple, recursive code for finding permutation. with repetition and no matter the complexity I found...

거의 6년 전 | 답변 수: 1 | 0

1

답변

질문


Least Square with condition
<</matlabcentral/answers/uploaded_files/124137/Screen%20Shot%202018-07-05%20at%2020.23.34.png>>

거의 6년 전 | 답변 수: 1 | 0

1

답변

질문


Numerical solution For Ax=b
<</matlabcentral/answers/uploaded_files/123978/Screen%20Shot%202018-07-04%20at%2017.20.06.png>> What I manage is: fu...

거의 6년 전 | 답변 수: 0 | 1

0

답변

질문


Symbolic Integration Using Solve
Why is the following do not work syms x t f=@(x)int(@(t)exp(-(t./x).^2),-1,1); solve(f==1.5,x)

거의 6년 전 | 답변 수: 0 | 0

0

답변

질문


Least Squares Of Linear Equations
<</matlabcentral/answers/uploaded_files/123860/Screen%20Shot%202018-07-03%20at%2010.59.15.png>> P=mt/b+t iff P=m-b*P\...

거의 6년 전 | 답변 수: 1 | 0

1

답변

질문


Finding x such that 1 is eigenvalue
Let A=[1 2 3;3 x 4; 1 2 5], find x such that 1 is eigenvalue of the matrix syms x det(A=[1 2 3;3 x 4; 1 2 5]-eye(3)); ...

거의 6년 전 | 답변 수: 2 | 0

2

답변

질문


Recursive Solution Of System Of lInear Equations
Given a square upper triangular matrix A and a solution column b. Write a recursive algorithm to find the vector x So the ...

거의 6년 전 | 답변 수: 1 | 0

1

답변

질문


Multiplying By 10000 vs 10^4
Why A=rand(3,3); B=A(:)*10000; is different from A=rand(3,3); B=A(:)*10^4;

거의 6년 전 | 답변 수: 1 | 0

1

답변

질문


Finding if a vector is a subset
I am trying to build a function that for a=[1 2] b=[1 3 2 9 5] will return false and for a=[1 2] b=[1 2 2 9 5]...

대략 6년 전 | 답변 수: 2 | 0

2

답변

질문


Replacing min and max values
For a given matrix I need to replace each element which is not min or max with the value 99 For example let M=[5 0 2;8 ...

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

1

답변

질문


Right array division with a vector
Why 1./1:1:10 return error and 1./(1:1:10) Does not? Should not 1:1:10 return a vector?

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

1

답변

질문


Can Matlab row reduce this matrix?
Can we row reduce the following matrix? <</matlabcentral/answers/uploaded_files/100684/Screen%20Shot%202018-01-09%20at%2014.5...

6년 초과 전 | 답변 수: 2 | 0

2

답변

질문


converting decimal to double
I am trying to write 81 in IEEE754 64bit (Double). I have tried >>double(int64(81)) But is does not work

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

1

답변

질문


binary to decimal when binary with radix point
I have to convert the following binary number to decimal: 11000101.101 I am using bin2dec('binary number') but is d...

7년 초과 전 | 답변 수: 2 | 0

2

답변

질문


format short and format long
I need to find the relative error between 2 variable, the one in format short and the other in format long. How can I take the ...

7년 초과 전 | 답변 수: 2 | 0

2

답변

더 보기