How to add title to the plot?
Title
Question
How can I add following to my graph?
1. Title
2. Border
I am using Scilab 6.1.0 on Ubuntu 18.04
1. Title
2. Border
I am using Scilab 6.1.0 on Ubuntu 18.04
Scilab Calling-User-Defined-Functions-in-XCOS 09-10 min 40-50 sec
Answers:
Type following commands on Scilab console to add title and border:
1. For title, type: xtitle(”Title of graph”);
2. For borders, type: a = gca(); a.box = ”on”
Login to add comment