Answer:
Following is created a cell array, called A with mentioned contents:
clc
clear all
close all
A={'Matlab' 'Simulink';[3,9;8,2] [2;8;5]};
B=A;
B{1,1}(3)='T'
C=A{1,2}
B{2,1}=[B{2,1};4,7]
Explanation:
Step-by-step explanation is as follows:
B{2,1}=[B{2,1};4,7]