From the Intel MKL Link Line Advisor, I was given the following libraries to be linked:
mkl_intel_c_dll.lib mkl_sequential_dll.lib mkl_core_dll.lib
The snapshot of choices are as follows:
<div class="video-overview"> <h3 class="video-title-container"> <a href="/watch?v=WRGfYqqjXDo&list=PL38214462962EB8A0&index=2" class="yt-uix-tile-link yt-uix-sessionlink" data-sessionlink="feature=plpp_video&ei=CPbFlenq67QCFZYUIQodkUULKQ%3D%3D"> <span class="title video-title " dir="ltr">Corner Reflector / Retroreflector (FDTD Animation)</span> </a> </h3> <p class="video-details"> <span class="video-owner"> by <span class="yt-user-name " dir="ltr">meyavuz</span> </span> <span class="video-view-count"> 151 views </span> </p> </div>
=importxml(A1,"//div[@class='video-overview']")
=value(replace(left(C1,len(C1)-5),1,10,""))
"=importxml(A1,"//span[@class='video-view-count']")
clear all; clc; % Simple example showing the Line Smoothing property freq=1e6; % frequency of operation omega=2*pi*freq; % angular frequency T=1/freq; % period Nt=10; dt=T/Nt; c=3e8; % speed of light lambda=c/freq; % wavelength k=2*pi/lambda; % wavenumber Nx=20; dx=lambda/Nx; x=(-6*lambda):dx:(6*lambda); % Evaluate $$ f(x)= sin(\omegat-kx) $$ at t=0 func= sin(omega*0-k*x); % Plot figure(1); clf; set(gcf,'Color',[1 1 1]); subplot(2,1,1); plot(x,func,'-b'); hold on; title('No Line Smoothing'); Xlim([x(1) x(end)]) subplot(2,1,2); plot(x,func,'-r','LineSmoothing','on') title('With Line Smoothing'); Xlim([x(1) x(end)])