Community Profile

photo

Marc Jakobi


Vela Solaris

Last seen: 1年以上 前 2013 年からアクティブ

Followers: 0   Following: 0

連絡

Software innovation for the renewable energy sector.

統計

All
  • Triathlon Participant
  • Scavenger Finisher
  • 3 Month Streak
  • Thankful Level 4
  • Quiz Master
  • Promoter
  • Personal Best Downloads Level 2
  • First Review
  • 5-Star Galaxy Level 5
  • GitHub Submissions Level 3
  • First Submission
  • Revival Level 1

バッジを表示

Feeds

表示方法

回答済み
Run Matlab without Admin rights?
This thread is a bit old, but I had the same problem and just found a solution. It's related to this <https://ch.mathworks.com/...

6年以上 前 | 6

回答済み
Matlab R2017b has problems with GIT and the configuration file when starting.
Thanks to Mathworks support: I had my MATLAB_PATH environment variable pointing to jre7 (I had set it manually because of an ...

6年以上 前 | 2

質問


Matlab R2017b has problems with GIT and the configuration file when starting.
Hi, When I open Matlab R2017b (after a fresh install), it fails to start GIT and to read the desktop config file. I get the b...

6年以上 前 | 1 件の回答 | 0

1

回答

回答済み
Colorbar not plotting the right colours
You cannot create a colorbar for bar() graphs in Matlab. What you can do is use a loop to create a separate bar graph for each ...

7年以上 前 | 0

回答済み
How does one save a struct type to an individual cell inside a table?
Have you tried converting the struct to a cell? doc struct2cell

7年以上 前 | 0

回答済み
how to design a neural network
You can find a bunch of examples <https://de.mathworks.com/help/nnet/examples.html here>

7年以上 前 | 0

回答済み
How to separate date and time into two tables?
What format do you need the dates in? As strings? If not, I would recommend using datevec() to convert it to a matrix in the fo...

7年以上 前 | 0

回答済み
How to create a standalone application of a script that calls "sim" function ?
To create a standalone from a Simulink model, you will need the <mathworks.com/products/simulink-coder/ Simulink Coder>. I don't...

7年以上 前 | 0

回答済み
conversion of daily cell into monthly cell.
Use vertical concatenation. month = [day1; day2; day3; ...; day31]; % day1 through day31 would be the variables containing ...

7年以上 前 | 0

回答済み
Getting error while plotting a 2d countour
In a GUI created in GUIDE, you may have to specify the axes in which to create the contour. contour(handles.axesName, x, y, ...

7年以上 前 | 0

回答済み
Will you show me examples of changing time zones with datetime?
Setting the TimeZone property doesn't change the time of a datetime vector, it just tells Matlab which time zone the datetime ob...

7年以上 前 | 1

回答済み
How to overlay plots one above the other?
Set the 'Clipping' property of what you want outside the axes to off. <https://de.mathworks.com/help/matlab/examples/clipping...

7年以上 前 | 1

回答済み
Invalid Message ID Format. Is my syntax wrong?
You do not need message() for that function. function area = areaof3ang(x1,y1,x2,y2,x3,y3) if nargin~=6 % this is...

7年以上 前 | 0

| 採用済み

回答済み
How to force output of large figure to not be "scaled", or how to properly print a pdf whose dimensions won't fit on the [small] screen
I haven't exported to PDF, but I used to have similar problems when exporting figures to emf. I have a short script that fixes ...

7年以上 前 | 0

回答済み
How to get 1807 point data array to 1806 data array?
The second input must be a vector, not the size of the output. So if you want to interpolate between the points, use something l...

7年以上 前 | 0

回答済み
can't use the help docements about matlab2015a
It sounds like a currupt Matlab installation. I would suggest you reinstall Matlab and if the problem still persists, call the M...

7年以上 前 | 0

| 採用済み

回答済み
How do I write a matlab code that requests the user for an array of integers and stores that array into the variable called A. How do I determine whether the integer is odd or even.
doc input Will tell you how to get user input. doc mod could be useful for finding out if a number is odd or even.

7年以上 前 | 0

回答済み
How to replace variables in symbolic function with values from a vector
You probably want the function subs()

7年以上 前 | 0

| 採用済み

回答済み
zoom-in into figure, doesn't change Y axes
Try setting the YTickLabelMode or the YTickMode to 'auto' or 'manual'. e. g. ax = gca; ax.YTickLabelMode = 'auto'; ...

7年以上 前 | 2

| 採用済み

回答済み
Change the axis label unit length
You can set the XTick and XTickLabel properties. ax = gca; ax.XTick = [...]; %vector containing ticks you would like (sp...

7年以上 前 | 1

| 採用済み

回答済み
Could someone please point out the error in my code?
If you want to find out if it is correct, look at the units. What you want as a result is currency, let's say £. rate = units...

7年以上 前 | 0

| 採用済み

回答済み
How do you determine which numbers in a vector are factors of 144 by indexing through it using loops?
tf = false(size(vector)); for i = 1:length(vector) if mod(144,vector(i)) == 0 tf(i) = true; end end...

7年以上 前 | 0

回答済み
Maximum of my own function
syms x f1 = 5*x + 2; F1 = int(f1); % integrate x_ext = solve(f1 == 0); % solve for x = 0 % limits for x --> -inf &...

7年以上 前 | 1

| 採用済み

回答済み
character array vs cell array empty cells
That's 3 questions ;) # I'm not sure I understand what you mean. If I create a cell array, it displays like this in the comma...

7年以上 前 | 0

| 採用済み

回答済み
place matrix in array part 2
Well if y = [ones(3,1); -ones(3,1)] % or y = [1; 1; 1; -1; -1; -1]; and x is take...

7年以上 前 | 1

| 採用済み

回答済み
How to remove for loops in this code?
If lsqcurvefit() can't be run on matrices, you may not be able to reduce the loop nesting. But if it is a lot of data, you can ...

7年以上 前 | 0

回答済み
Copying Profile results into Word/Excel
Did you use? p = profile(...) If so, you could use xlswrite(). Otherwise, try saving the HTML results using profsa...

7年以上 前 | 0

| 採用済み

回答済み
Read a .mat file and write .csv without opening matlab
You won't be able to run a Matlab-file without opening Matlab - unless you use another program that is compatible. However, y...

7年以上 前 | 0

| 採用済み

回答済み
how can I store for loop result in different row(for each i) and column(for each j given i)?
You could do it like this: stock = nan(17,5676); rCT = 0; %row counter cCT = 0; %column counter maxC = 0; %for ...

7年以上 前 | 0

回答済み
unsupported MATLAB function call for matlab function 'datastore'
You can look into the code edit datastore Maybe it's possible to create a function that does the same without using unsu...

7年以上 前 | 0

さらに読み込む