'I have made a graph using MATLAB and I was wondering if it is possible to accomplish this natively in android studios?

the following is a graph that i made using Matlab and i have been searching through the internet to see if it is possible to accomplish this in android studios natively. image of the graph:

code:

imshow('NglQd.png');
axis on
hold on;
% Plot cross at row 100, column 50
h=plot(50,50, 'o', 'MarkerSize', 15, 'LineWidth', 2);
set(h, 'MarkerFaceColor', get(h,'Color'));


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source