Réponse apportée
(Need Help) Is fmincon command available for the embedded coder?
There is a section at the bottom of the documentation page of fmincon that lists limitations for code generation. This section ...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
Load and display bitmap file using Fread
You should reshape the data, not the fid. To remove the first 54 bytes you can use fseek, or just skip it from your array: ...

plus de 4 ans il y a | 0

Réponse apportée
How to get rid of green marker/arrow?
This looks like the pointer that indicates where your code execution has paused so you can step through the code. If so, you sho...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
How to plot audiofiles in Vertically
There is no VerticalAlignment property for uicontrol objects (neither in R2018a or R2021b). A center alignment is the default. F...

plus de 4 ans il y a | 0

Réponse apportée
reading the data with title
Any Google search for 'read text file matlab' should provide you with an answer that works. What I personally use is my readfile...

plus de 4 ans il y a | 0

Réponse apportée
New to matlab. Why i get this answer?
syms y(t) yef(t); ymax=120*0.40680; yef(t)= 0.95*(1/(1+(y(t)/ymax)*y(t)+(1-(1/(1+(y(t)/ymax))*ymax)))); yo=0.40680*140; k10=...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
Deleting certain elements from an array without looping
The code Chunru wrote will work, but I have a few suggestions. Instead of using length, you should consider using numel as a ha...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
overlay bar plot without mixing color
Here is my solution, which allows you to specify the 3 face colors separately: A = [1;5;3;7;4]; B = [3;2;4;8;2]; shared=min(A...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
How do you create an array of date times given a starting date and number of days?
Vector1=1:5; Datetimevector = datetime(1900,1,1)+days(1:numel(Vector1))

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
How to view a mat file that says preview too large to display Properly in Import Wizard
A mat file is a file, not a variable. It may contain variables. Judging from your description it only contains a single variable...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
I not able to understand what type error I am making in the while loop
You aren't updating the value itself, so the calculation is the exact same on every iteration. function out = babyloniansqrt(S,...

plus de 4 ans il y a | 0

Réponse apportée
Looking for alternative of extractBetween function
You need to come up with a regular expression that will exactly match what you want to extract. Below is my guess for what you w...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
What frustrates you about MATLAB? #2
Posted by @stephen williams on the original thread: The symbolic toolbox seems to have a lot of power, but it is not user frien...

plus de 4 ans il y a | 1

Réponse apportée
What frustrates you about MATLAB? #2
Posted by @Osmar Tormena Júnior on the original thread: I understand that being a Mac user I'm in a niche position. But I find ...

plus de 4 ans il y a | 0

Réponse apportée
How to create an interactive menu in the command window?
doc input Although in general a GUI will be nicer for your user. For general advice and examples for how to create a GUI (a...

plus de 4 ans il y a | 0

Réponse apportée
Creating a new table column that is the range of numbersbetween two other column
You can either use a loop, or hide the loop with rowfun: data=[54 119 60 129 177 119 183 129 ...

plus de 4 ans il y a | 0

Réponse apportée
How to increase the efficiency of this MATLAB program by using vectorization techniques
Arrayfun will only hide the loop, so it will never be faster than a plain for loop. What you need to do is change your function...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
c++ programming.
You forgot two things: This is a Matlab forum and nothing in your question is related to Matlab Every line should end with a s...

plus de 4 ans il y a | 0

Réponse apportée
char array to cell array convert?
If you want to round your data, just use round: T = {[5.8882656], [0.01232356], [0.02556545],[0.035659595]}; T = cell2mat(T); ...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
How to read a txt file with comma, text and numbers in matlab, and export the data
doc csvread

plus de 4 ans il y a | 1

Réponse apportée
curve fit a custom polynomial
You have two options: rewrite your equation to be a pure quadratic and use polyfit, or use a function like fit or fminsearch on ...

plus de 4 ans il y a | 1

Réponse apportée
Update elements in matrix with condition
N = size(P,1); for k = 1:1:N if P(k,5) == 0 P(k,3) = P(k,1) + P(k,3); end end Similar code will allow y...

plus de 4 ans il y a | 1

Réponse apportée
how to convert 1x2 double into two 1x1
It looks like this is what you want: x=Time_msg_match(61649); x=x{1};

plus de 4 ans il y a | 0

Réponse apportée
Is the formula given the same as the code?
Since the exponents range from -1 to -7, that means you will need 7 different values for t. One of the ways to achieve that is i...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
I have a code but it keep saying "invalid expression. when calling a function or indexing a variable, use parentheses. otherwise check for mismatched delimiters.
The reason is these two lines: xx1=(0,8.*pi,1000) x3=(-4,4) Did you maybe forget linspace? Anyway, this isn't valid Matlab s...

plus de 4 ans il y a | 0

Réponse apportée
why \pi don't work??
Why did you expect it to? This isn't LaTeX. If you want the pi symbol in a character vector that is possible: char(960) Or yo...

plus de 4 ans il y a | 0

Réponse apportée
arrays have incompatible sizes for this operation help me PLZ
I have removed all the plotting code and included calls to size to determine the sizes of all the variables involved. data_size...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
How can I load .mat files?
Or: matfilenames={'Datasets/a.mat','Datasets/b.mat','Datasets/c.mat'}; for k = 1:3 S=load(matfilename{k}); fields=fi...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
How to fix "Error using == Arrays have incompatible sizes for this operation." in this code?
Let's have a look at the line that results in an error: n1=(sum(x.*y)-length(d)*mean(x)*mean(y))/(sum(x.^2)-length(d)*(mean(x)*...

plus de 4 ans il y a | 0

Réponse apportée
The Problem with clc; clear; close all; ?
My main point is that people will get into the habit of using this, and will also use it in functions. Clear is almost never ...

plus de 4 ans il y a | 0

| A accepté

Charger plus