How can I plot the graphs of matrices?

조회 수: 1 (최근 30일)
Emin Kursat Dogray
Emin Kursat Dogray 2020년 12월 23일
답변: Gouri Chennuru 2020년 12월 27일
Hello.
I'm just learning MATLAB. How can I graph a function that contains a matrix? Sorry about any inconveince.
For example;
A=[2 1;1 2]; %defining matrix A
b=[1;-1]; %defining matrix b
c=2; %defining c
f=@(x) 0.5*transpose(x)*A*x - transpose(b)*x + c ; %defining function f
x=[0;0]; %selecting a starting point
I want to see the global minimum and maximum.

답변 (1개)

Gouri Chennuru
Gouri Chennuru 2020년 12월 27일
Hi,
You can make use of fplot function available in MATLAB in order to plot the function or expression.
In order to find the global maximum and global minimum you can refer to this link
Hope this helps!

카테고리

Help CenterFile Exchange에서 Graph and Network Algorithms에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by