Hello guys
Does anyone use Maxwell Ansoft?
If so, have you tried to export it to Excell? if so do u use any MATLAB code to convert it? or use macros in excell?
Thanks
Hello guys..
I am trying to write a code for ASK in Matlab, but it doesn't give me the final figure!
% Generating a input square wave
x1 = 0:(pi/100):(10*pi);
y1 = square(x1);
A = plot(x1,y1);
figure(1),A,title( 'Square wave');xlabel('x'); ylabel('y');ylim([0,1]);grid;
% Generating...