Here’s a today’s famous quote.
Wenn sich der Most auch ganz absurd gebärdet, Es gibt zuletzt doch noch e' Wein. -Goethe
Even if the cider is terrible , it'll be fine wine after all.
Here’s a today’s famous quote.
Wenn sich der Most auch ganz absurd gebärdet, Es gibt zuletzt doch noch e' Wein. -Goethe
Even if the cider is terrible , it'll be fine wine after all.
1.Checking the size of a matrix
A = [2 2; 3 3; 4 4;];
size(A)⇒(3,2)
size(A,1)⇒(3)
2.Generating a random matrix
A = randi([1 4],3,5)⇒
3 4 4 4 3
4 1 2 2 2
4 4 2 1 3
3.Transpose Matrix
I = ones(1,5)⇒
1 1 1 1 1
IcolV = I'⇒
1
1
1
1
1
A * IcolV⇒
18
11
14
4.Powering and Multiplication at each element
M = [1 3; 2 2; 2 3;];
M.^2⇒
1 9
4 4
4 9
N = [1 3; 2 2; 2 3;];
M .* N⇒
1 9
4 4
4 9
Here’s the list of expressions used in Octave.
Octave official page
1.Checking the size of a matrix
A = [2 2; 3 3; 4 4;];
size(A)⇒(3,2)
size(A,1)⇒(3)
2.Generating a random matrix
A = randi([1 4],3,5)⇒
3 4 4 4 3
4 1 2 2 2
4 4 2 1 3
3.Transpose Matrix
I = ones(1,5)⇒
1 1 1 1 1
IcolV = I'⇒
1
1
1
1
1
A * IcolV⇒
18
11
14
4.Powering and Multiplication at each element
M = [1 3; 2 2; 2 3;];
M.^2⇒
1 9
4 4
4 9
N = [1 3; 2 2; 2 3;];
M .* N⇒
1 9
4 4
4 9
Short answer. Deep Learning is subfield of Machine Learning. If you’re totally new to these fields, you like to learn ML first then DL next to understand how these work.
So summer comes again this year. Murderous heatwaves, intense sunlight.
We all know we can’t escape from the harsh weather though, the follwing voice command may help you forget them for a seconds. Try it and stay safe.
Alexa, play ocean sounds.
Alexa, play windy sounds.
This is the topic keeps staying in my mind. If there were some app that gives the functions of the lines drew on the touch screen, that would be neat.
I want to use that kind of app.
The functions of curve lines
Shoot some pictures near my rent house. Rural scenary is good for your eyes.
Having an interest on Machine Learning, I registerd one of courses. Luckily I have some time for learning it now not like the previous time I registered on an Udacity’s Machine Learning course paying nearly 500 bucks. The lesson videos are not too long and clear to understand. Started to feel that it’s a good deal to me. Looks like many universities selling their contents on this platform. They started new subscription bussiness.
I like Netflix. It offers many classic dramas and animes with multiple subtitles and audios. Seinfeld and Friends is my favorite. These’re fun and easy to follow. Best learning resource to learn english for me. Besides English, I am also trying to learn German (or have to confess struggling. it’s difficult to pronaunce words correctly) by watching classic dramas. Pastewka and Faust. I bought these dvds. As the subtitle didn’t comes along with, had to find transcript on web and did it after long hours research. This web site is really helpful.
Does WordPress get many hacking access? Yes. one of my WP web sites gets sometimes two hundreds of unknown login-attempt access from over the world in a day at most. Whenever unknown login-attemps occur, WP send alert email to the owner’s account. And some of these successfuly loged in as admin user? The answer is no. If one hacker had a his (or her) lucky day, would the one steal your credit number info from WP website? Online payment plugins used in WP like paypayl, stripe(Saas) don’t save that critical infomation on the WP server so hackers can’t get your credit number from WP website.