Respondida
How can I display the email address of the account that is logged in Outlook?
Maybe you can use the SmtpAddress Property of the account object? clearvars, close all, clc acx = actxserver('outloo...

casi 6 años hace | 0

| aceptada

Respondida
How to remove whitespace around subplots keeping margines for writing x/y labels and ticks?
For such tasks, i prefer using the OuterPosition property of axes. I.e.: clearvars close all clc f = figure; ...

casi 6 años hace | 0

Respondida
I needed help with this GUI. So essentially in isolation, How do i get the static text to show this 'ans' variable in the worksapce?
You can use "evalin" to evaluate an expression in the base workspace. <https://de.mathworks.com/help/matlab/ref/evalin.html>

casi 6 años hace | 0

Respondida
Solving heat transfer equation using finite difference method
You start with i=1 and one of your indices is T(i-1), so this is addressing the 0-element of T. In Matlab we start with index 1....

casi 6 años hace | 0

Respondida
vector of X values contains duplicate values
The heatmap functions first two arguments are in this context the labels for the x-axis and y-axis. These have to be unique and ...

casi 6 años hace | 0

Respondida
How can I move a point parallel to a created plane?
Assuming your points are called p1, p2 and p3: One simple approach would be to define a coordinate system (non-orthonormal) with...

casi 6 años hace | 0

| aceptada

Resuelto


Connect blocks in a model
Connect the blocks in the model to produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/connect-blocks...

más de 6 años hace

Resuelto


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

alrededor de 8 años hace

Resuelto


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

alrededor de 8 años hace

Resuelto


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

alrededor de 8 años hace

Resuelto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

alrededor de 8 años hace