Community Profile

photo

Ritesh Khan


Last seen: 5 maanden ago Active since 2020

Followers: 0   Following: 0

Message

Statistics

All
  • Solver
  • Thankful Level 1

View badges

Feeds

View by

Question


How can I install Optimization toolbox?
function F =fun(x) F(1) = exp(-exp(-(x(1)+x(2)))) - x(2)*(1+x(1)^2); F(2) = x(1)*cos(x(2)) + x(2)*sin(x(1)) - 0.5; ...

ongeveer 4 jaar ago | 3 answers | 0

3

answers

Solved


Multiply by 3
Given the variable x as your input, multiply it by three and put the result in y.

ongeveer 4 jaar ago

Solved


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; ...

ongeveer 4 jaar ago

Solved


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

ongeveer 4 jaar ago

Question


Asking about an output
%% Differentiation of tan^{-1}x at 1 clear all; clc; f=@(x) atan(x); a=1; h=10.^[-2:-1:-4]; eVal=1/(1+a^2); %% Forward di...

ongeveer 4 jaar ago | 1 answer | 0

1

answer