I am new to matlab.
I am used to python. In python i generally do the below to print text and string together
a=10
b=20
print("a :: "+str(a)+" :: b :: "+str(b))
In matlab we have to use sprintf and use formats. But is this python kind of printing possible in matlab with any way.