Beantwortet
1. For x from 1 to 100, calculate y. Use fopen and fprintf to write x and y data into a file named “my_data.txt”. Then use fopen and fscanf to read the data. Show the data in two columns. Function to be used: y = e^(0.02x)
Please don't post homework problems without showing your attempts and asking specific questions. I'm feeling generous, though, s...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
[DISCONTINUED] MATLAB Answers Wish-list #5 (and bug reports)
Add a set of pre-written comments for common situations. Things like: "this is clearly a homework problem, please display some ...

fast 4 Jahre vor | 5

Beantwortet
Monthly Average from Daily Data
See findgroups for taking the mean based on a grouping variable. See month for converting a datetime variable to its month See...

fast 4 Jahre vor | 0

Beantwortet
How to vectorize this code?
frequency=randi([0 578],110,1); axis=[-275:5:270]'; % get indices where axis is negative axis_negative = (axis<=0); % calcul...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
how to use for loop to compute a matrix
Assuming each one produces a 25 x 12852 dist array, you can do this fairly easily. Which dimension do you want to concatenate on...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
Access data in a nested structure array and generate an excel file
[Edited with fixed answer, x2] This throws no errors and appears to produce a correct excel file from your sample data: files ...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to write a function which handles strings?
Live editor functionality changes a lot across versions, but my suggestion would be to put your function in a separate cell from...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to create a custom colormap in this case?
That is essentially the example here. Using the hex -> rgb converter from this answer: % test image imagesc(rand(10,10)) col...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
Is there any way to output coordinates of a point?
If you want to get the data for an arbirtrary point in your graph, you can add a datatip by clicking with the cursor, then right...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
Add various horizontal lines to a plot Matlab 2016a
See here for a few solutions: https://www.mathworks.com/matlabcentral/answers/2031-adding-vertical-line-to-plot

fast 4 Jahre vor | 0

Beantwortet
Scatter Plot only Non-Zero Set of Points
Here's how to do this with a small example script: % create a 5x2 array of random integers 0-5 for both x and y x = randi([0 5...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
Operate on all the columns of a matrix
"N = normalize(A,dim) returns the z-score along dimension dim. For example, normalize(A,2) normalizes each row." norm_mat=norma...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to make only some part of a y axis label italic? (in boxplot?)
Set the tick label interpreter to tex: ax=gca; ax.TickLabelInterpreter = 'tex'; or set(gca,'TickLabelInterpreter','tex')

fast 4 Jahre vor | 0

Beantwortet
How to find the min, max and mean values of 34 timetables stored in a 1 x 34 cell and add them as extra columns to the respective timetables?
Is this what you want to do: Load in a given table (say jj=1) create TT2{1} find the min of TT{1}.temperature add a third co...

fast 4 Jahre vor | 0

Beantwortet
How can I set a discontinuous colormap and colorbar range?
Potential solution: Shift the data into a continuous range, then relable the colorbar: cont_data = mydata; % move [351 - 360 ...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
Summation of numbers using prompts
Two errors: The function should not have n as an argument. Wait to ask the user don't use "sum" as a variable name; it's a fun...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to compare strings within a loop
No need to loop, strcmpi will compare a string to all strings in an array. If you don't care which string matches, use "any": s...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
I have a timetable with 10 columns that are all binary and I want to add them together so I get a sum of those binary numbers for each row. Is there an easy way to do this?
% example table mytable=array2table(randi([0 1],20,10)); % create column variable with sum sum_all = sum(mytable{:,1:10},2); ...

fast 4 Jahre vor | 0

Beantwortet
Plot Problem in Matlab
Assuming you have edited the matlabrc, it may be as simple as you having a scalar logical operator (&&, ||) instead of an elemen...

fast 4 Jahre vor | 0

Beantwortet
Modifying a function for the trapezoidal rule to work with a data set instead of an equation?
My suggestion is to check out the built-in trapz function. There are a few formulas there that should help. Another note: your ...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
how to preserve original column headings (variable names) when using writetable
As of 2019b, table variable names don't need to follow normal variable naming rules. This allows for a couple of fixes: T = rea...

fast 4 Jahre vor | 6

| akzeptiert

Beantwortet
How can I change the size of the text in annotation, and place a border around it?
You are setting the width and height of the box to 0. I believe this should do it, but check here for other properties you may ...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
Creating a Tabular Legend
Not a good solution, but with some fiddling gets pretty close: myleg=compose('%-8s%10d',["Boot";"Engine";"Wheel"],[1 3 5]'); m...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
Change meshgrid face color
surf(Ltm, Lnm, Pm,'FaceAlpha',0.5) to set transparency to 50%. See other options here

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
Read string from files since R2020a
From the release notes: "As of R2020a, character-oriented file I/O functions such as fscanf, fgets, and fgetl trigger automatic...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
Adding a categorical column to a Table
In one line: mytable.mycategories = categorical(repelem({'v';'a';'i'},[68,32,55])); To explain: Matlab will add a column if...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
Selecting particular data range from table/ columns
idx = (mytable{:,2} >= 15) & (mytable{:,2} <= 50); newtable = mytable(idx,1:2); Components of the answer: extract the data ...

etwa 4 Jahre vor | 1

Gelöst


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

etwa 4 Jahre vor

Gelöst


Magic is simple (for beginners)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.

etwa 4 Jahre vor

Gelöst


Make a random, non-repeating vector.
This is a basic MATLAB operation. It is for instructional purposes. --- If you want to get a random permutation of integer...

etwa 4 Jahre vor

Mehr laden