For Beginners: Basics of MATLAB Programming and Graphics

preview_player
Показать описание
For Beginners: Basics of MATLAB Programming and Graphics.
Other videos @DrHarishGarg
Рекомендации по теме
Комментарии
Автор

i am big fan of you sir from statistics to MATLAB, great wor

makeiteasy-maths
Автор

I wish to know when the balance of MATLAB Codes would be uploaded? Some more methods may be considered for inclusion: POWELL-ZANGWILL, SUMT, LINEAR REGRESSION ANALYSIS, MULTIVARIABLE REGRESSION ANALYSIS etc

darkavenger
Автор

Sir please bring more matlab videos for beginners to advanced 🙏🙏

Rahul_Prajapati-nn
Автор

Can you please tell how to install matlab ?

sidranisar
Автор

A person with the mathematical background. How he/she find the career opportunity and in which field he/she can go to make a best career?

motivemind
Автор

Thank you Dr. Harish for your efforts. I have a quastion about how to convert an idea to algorithm in matlab ?

Hhhhhhhhhhh
Автор

sir have u uploaded MATLAB ODE45 algorithm in this channel?

surajkumarprasad
Автор

clc;
clear;
format long;

% Input function
f = str2func(['@(x) ' input('Enter function', 's')]);
% Input bounds
x_upper = input('Enter upper bound limit: ');
x_lower = input('Enter lower bound limit: ');
% input tolerance
tolerance = input('Enter tolerance for the function :');
% checking the validity of bounds
if f(x_upper) * f(x_lower) >= 0
error('Function values at bounds must have opposite signs.');
end

% Bisection Method
for iter = 1:100
x_r = (x_upper + x_lower) / 2;
f_x = f(x_r);
% Check convergence
if abs(f_x) < tolerance && (x_upper - x_lower) / 2 < tolerance
break;
end
% Update bounds
if f(x_upper) * f_x < 0
x_lower = x_r;
else
x_upper = x_r;
end
end

% Display results
fprintf('Root: %.10f\nFunction value at root: %.10f\nNumber of iterations: %d\n', x_r, f(x_r), iter);

ASHUTOSHYADAV-bt
Автор

I request sir
Command in numerical analysis ka pdf file mil sakta hai kya

अध्यात्म-ज्योतिष
Автор

Sir please provide matlab code for inventory control
How to use Optimization App and fuzzy toolbox in MATLAB

democraticindian.
visit shbcf.ru